~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/memory/root.h

  • Committer: Mark Atwood
  • Date: 2011-08-04 16:21:21 UTC
  • mfrom: (2318.9.14 refactor3)
  • Revision ID: me@mark.atwood.name-20110804162121-6b9ay1b1de3yfgvl
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/common_fwd.h>
24
24
#include <drizzled/definitions.h>
 
25
#include <drizzled/util/data_ref.h>
25
26
#include <drizzled/visibility.h>
26
27
 
27
28
namespace drizzled {
110
111
  void* memdup(const void*, size_t);
111
112
  char* strdup(const char*);
112
113
 
113
 
  char* strmake(const char*, size_t);
114
 
  char* strmake(const std::string&);
115
 
  char* strmake(const String&);
 
114
  char* strdup(const char*, size_t);
 
115
  char* strdup(str_ref);
116
116
  void init(size_t block_size= ROOT_MIN_BLOCK_SIZE);
117
117
 
118
118
  inline bool alloc_root_inited()