~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/heapdef.h

  • Committer: Jay Pipes
  • Date: 2008-08-05 18:43:30 UTC
  • mto: (264.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: jay@mysql.com-20080805184330-rooly59ksmwg0wnf
* Added include guards in a couple places, and removed unecessary
  conditional includes in older storage engine code
* Provided comments for included file in mysql_priv.h explaining 
  what each file brought into the include stream
* Added notes and TODOs where cleanup is still needed
* Removed unnecessary pragmas in similarly-named header/implementation
  files (C++ standard says they are unnecessary if implementation is 
  in a file named same as the header.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/* This file is included in all heap-files */
 
17
#ifndef HEAPDEF_H
 
18
#define HEAPDEF_H
17
19
 
18
20
#include <drizzled/base.h>              /* This includes global */
19
21
C_MODE_START
125
127
 
126
128
extern pthread_mutex_t THR_LOCK_heap;
127
129
C_MODE_END
 
130
 
 
131
#endif /* HEAPDEF_H */