X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e048b9d6c83f24e8649df8ae09759d4616ec0d30..8dc7a3bb3f1aaa0fabb9a2acc22c32483f662bab:/src/xbt/mallocator_private.h diff --git a/src/xbt/mallocator_private.h b/src/xbt/mallocator_private.h index bd5aeddcfa..35b96d46d1 100644 --- a/src/xbt/mallocator_private.h +++ b/src/xbt/mallocator_private.h @@ -5,9 +5,9 @@ typedef struct s_xbt_mallocator { int current_size; /* number of objects currently stored */ void **objects; /* objects stored by the mallocator and available for the user */ int max_size; /* maximum number of objects */ - pvoid_f_void_t *new_f; /* function to call when we are running out of objects */ - void_f_pvoid_t *free_f; /* function to call when we have got too many objects */ - void_f_pvoid_t *reset_f; /* function to call when an object is released by the user */ + pvoid_f_void_t new_f; /* function to call when we are running out of objects */ + void_f_pvoid_t free_f; /* function to call when we have got too many objects */ + void_f_pvoid_t reset_f; /* function to call when an object is released by the user */ } s_xbt_mallocator_t; #endif