X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/234b2f4e892e942c28fa9c8bc4f57af1214b1424..4bb73cb3914b5f7b77a9ec1f8abe728e637cc016:/include/xbt/mmalloc.h diff --git a/include/xbt/mmalloc.h b/include/xbt/mmalloc.h index a8b49c46f4..eff59a07dd 100644 --- a/include/xbt/mmalloc.h +++ b/include/xbt/mmalloc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. +/* Copyright (c) 2010-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -31,29 +31,29 @@ typedef struct mdesc s_xbt_mheap_t; typedef struct mdesc *xbt_mheap_t; /* Allocate SIZE bytes of memory (and memset it to 0). */ -XBT_PUBLIC( void ) *mmalloc(xbt_mheap_t md, size_t size); +XBT_PUBLIC void* mmalloc(xbt_mheap_t md, size_t size); /* Allocate SIZE bytes of memory (and don't mess with it) */ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size); /* Re-allocate the previously allocated block in void*, making the new block SIZE bytes long. */ -XBT_PUBLIC( void ) *mrealloc(xbt_mheap_t md, void *ptr, size_t size); +XBT_PUBLIC void* mrealloc(xbt_mheap_t md, void* ptr, size_t size); /* Free a block allocated by `mmalloc', `mrealloc' or `mcalloc'. */ -XBT_PUBLIC( void ) mfree(xbt_mheap_t md, void *ptr); +XBT_PUBLIC void mfree(xbt_mheap_t md, void* ptr); -XBT_PUBLIC( xbt_mheap_t ) xbt_mheap_new(int fd, void *baseaddr); +XBT_PUBLIC xbt_mheap_t xbt_mheap_new(int fd, void* baseaddr); #define XBT_MHEAP_OPTION_MEMSET 1 -XBT_PUBLIC( xbt_mheap_t ) xbt_mheap_new_options(int fd, void *baseaddr, int options); +XBT_PUBLIC xbt_mheap_t xbt_mheap_new_options(int fd, void* baseaddr, int options); -XBT_PUBLIC( void ) xbt_mheap_destroy_no_free(xbt_mheap_t md); +XBT_PUBLIC void xbt_mheap_destroy_no_free(xbt_mheap_t md); -XBT_PUBLIC( void ) *xbt_mheap_destroy(xbt_mheap_t md); +XBT_PUBLIC void* xbt_mheap_destroy(xbt_mheap_t md); /* return the heap used when NULL is passed as first argument to any mm* function */ -XBT_PUBLIC( xbt_mheap_t ) mmalloc_get_default_md(void); +XBT_PUBLIC xbt_mheap_t mmalloc_get_default_md(void); /* To change the heap used when using the legacy version malloc/free/realloc and such */ xbt_mheap_t mmalloc_set_current_heap(xbt_mheap_t new_heap);