ucx/allocator.h

changeset 146
aa376dba1ba8
parent 120
8170f658f017
child 173
31a8682fffb7
     1.1 --- a/ucx/allocator.h	Wed Aug 14 16:07:49 2013 +0200
     1.2 +++ b/ucx/allocator.h	Fri Aug 16 13:40:10 2013 +0200
     1.3 @@ -63,16 +63,19 @@
     1.4   * @see UcxAllocator
     1.5   */
     1.6  typedef void*(*ucx_allocator_malloc)(void *pool, size_t n);
     1.7 +
     1.8  /**
     1.9   * A function pointer to the allocators <code>calloc()</code> function.
    1.10   * @see UcxAllocator
    1.11   */
    1.12  typedef void*(*ucx_allocator_calloc)(void *pool, size_t n, size_t size);
    1.13 +
    1.14  /**
    1.15   * A function pointer to the allocators <code>realloc()</code> function.
    1.16   * @see UcxAllocator
    1.17   */
    1.18  typedef void*(*ucx_allocator_realloc)(void *pool, void *data, size_t n);
    1.19 +
    1.20  /**
    1.21   * A function pointer to the allocators <code>free()</code> function.
    1.22   * @see UcxAllocator

mercurial