~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/heap_priv.h

  • Committer: Brian Aker
  • Date: 2010-08-08 04:21:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1697.
  • Revision ID: brian@gaz-20100808042129-x4we3721ql8lfsje
Update for HEAP to convert its lock to boost.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "drizzled/tree.h"
28
28
#include <list>
29
29
 
 
30
#include <boost/thread/mutex.hpp>
 
31
 
30
32
/*
31
33
  When allocating keys /rows in the internal block structure, do it
32
34
  within the following boundaries.
122
124
extern void hp_extract_record(HP_SHARE *info, unsigned char *record, const unsigned char *pos);
123
125
extern uint32_t hp_process_record_data_to_chunkset(HP_SHARE *info, const unsigned char *record, unsigned char *pos, uint32_t is_compare);
124
126
 
125
 
 
126
 
 
127
 
extern pthread_mutex_t THR_LOCK_heap;
 
127
extern boost::mutex THR_LOCK_heap;
128
128
 
129
129
#endif /* PLUGIN_HEAP_HEAP_PRIV_H */