~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/ut0mem.h

  • Committer: Brian Aker
  • Date: 2010-10-21 05:03:11 UTC
  • mto: (1866.1.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1867.
  • Revision ID: brian@tangent.org-20101021050311-gmobtsn3cgp8tz0b
Add a catalog() command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        ulint   n);     /*!< in: try to allocate this many bytes */
115
115
#endif /* !UNIV_HOTBACKUP */
116
116
/**********************************************************************//**
117
 
Frees a memory block allocated with ut_malloc. Freeing a NULL pointer is
118
 
a nop. */
 
117
Frees a memory block allocated with ut_malloc. */
119
118
UNIV_INTERN
120
119
void
121
120
ut_free(
122
121
/*====*/
123
 
        void* ptr);  /*!< in, own: memory block, can be NULL */
 
122
        void* ptr);  /*!< in, own: memory block */
124
123
#ifndef UNIV_HOTBACKUP
125
124
/**********************************************************************//**
126
125
Implements realloc. This is needed by /pars/lexyy.c. Otherwise, you should not