~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_static.c

Merged in changes. 
Edited a the comment test case so deal with our version bump.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "heap_priv.h"
22
 
#include <list>
23
 
 
24
 
using namespace std;
25
 
 
26
 
list<HP_INFO *> heap_open_list;
27
 
list<HP_SHARE *> heap_share_list;
28
 
 
 
21
#ifndef _global_h
 
22
#include "heapdef.h"
 
23
#endif
 
24
 
 
25
LIST *heap_open_list=0,*heap_share_list=0;