~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/heap.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
/* This file should be included when using heap_database_functions */
19
19
/* Author: Michael Widenius */
20
20
 
21
 
#pragma once
 
21
#ifndef PLUGIN_MEMORY_HEAP_H
 
22
#define PLUGIN_MEMORY_HEAP_H
22
23
 
23
24
#include <drizzled/base.h>
 
25
#include <drizzled/common.h>
 
26
#include "drizzled/internal/my_pthread.h"
24
27
#include <drizzled/thr_lock.h>
25
28
 
26
29
#include <plugin/myisam/my_handler.h>
 
30
#include "drizzled/tree.h"
27
31
 
28
32
#include <vector>
29
33
 
309
313
 
310
314
typedef unsigned char *HEAP_PTR;
311
315
 
 
316
#endif /* PLUGIN_MEMORY_HEAP_H */