~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_static.c

  • Committer: Monty Taylor
  • Date: 2008-07-11 15:23:55 UTC
  • mto: (77.6.1 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 134.
  • Revision ID: monty@inaugust.com-20080711152355-o92cod4mg0u9ck03
More const-correctness.

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;