~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/memory/sql_alloc.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
 
21
21
 
22
 
#pragma once
 
22
#ifndef DRIZZLED_MEMORY_SQL_ALLOC_H
 
23
#define DRIZZLED_MEMORY_SQL_ALLOC_H
23
24
 
24
25
#include <unistd.h>
25
 
#include <drizzled/memory/root.h>
26
 
 
27
 
#include <drizzled/visibility.h>
28
 
 
29
 
namespace drizzled {
30
 
namespace memory {
 
26
#include "drizzled/memory/root.h"
 
27
 
 
28
#include "drizzled/visibility.h"
 
29
 
 
30
namespace drizzled
 
31
{
 
32
class Session;
 
33
 
 
34
namespace memory
 
35
{
31
36
 
32
37
void init_sql_alloc(Root *root, size_t block_size, size_t pre_alloc_size);
33
38
void *sql_alloc(size_t);
62
67
}
63
68
}
64
69
 
 
70
#endif /* DRIZZLED_MEMORY_SQL_ALLOC_H */