~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-04-19 19:23:14 UTC
  • Revision ID: brian@gaz-20100419192314-47vro57tcn607i61
More updates for memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
378
378
  }
379
379
  inline char *strdup(const char *str)
380
380
  {
381
 
    return strdup_root(mem_root,str);
 
381
    return mem_root->strdup_root(str);
382
382
  }
383
383
  inline char *strmake(const char *str, size_t size)
384
384
  {
385
 
    return strmake_root(mem_root,str,size);
 
385
    return mem_root->strmake_root(str,size);
386
386
  }
387
387
  inline void *memdup(const void *str, size_t size)
388
388
  {
389
 
    return memdup_root(mem_root,str,size);
 
389
    return mem_root->memdup_root(str, size);
390
390
  }
391
391
  inline void *memdup_w_gap(const void *str, size_t size, uint32_t gap)
392
392
  {