~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/heapdef.h

  • Committer: Monty Taylor
  • Date: 2008-07-02 14:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702143548-onj30ry0sugr01uw
Removed all references to THREAD.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
#include <my_base.h>                    /* This includes global */
19
19
C_MODE_START
20
 
#ifdef THREAD
21
20
#include <my_pthread.h>
22
 
#endif
23
21
#include "heap.h"                       /* Structs & some defines */
24
22
#include "my_tree.h"
25
23
 
102
100
extern void hp_clear_keys(HP_SHARE *info);
103
101
extern uint hp_rb_pack_key(HP_KEYDEF *keydef, uchar *key, const uchar *old,
104
102
                           key_part_map keypart_map);
105
 
#ifdef THREAD
106
103
extern pthread_mutex_t THR_LOCK_heap;
107
 
#else
108
 
#define pthread_mutex_lock(A)
109
 
#define pthread_mutex_unlock(A)
110
 
#endif
111
104
C_MODE_END