~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mem/mem0pool.c

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
}
262
262
 
263
263
/********************************************************************//**
 
264
Frees a memory pool. */
 
265
UNIV_INTERN
 
266
void
 
267
mem_pool_free(
 
268
/*==========*/
 
269
        mem_pool_t*     pool)   /*!< in, own: memory pool */
 
270
{
 
271
        ut_free(pool->buf);
 
272
        ut_free(pool);
 
273
}
 
274
 
 
275
/********************************************************************//**
264
276
Fills the specified free list.
265
277
@return TRUE if we were able to insert a block to the free list */
266
278
static