X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/90a061a7c17d17c4c94ec12095d495d6e218f961..f3603ef03e31982f8690dbb3ace9be716087c50d:/src/smpi/smpi_c99.c diff --git a/src/smpi/smpi_c99.c b/src/smpi/smpi_c99.c index df84a2e3b9..32e0265104 100644 --- a/src/smpi/smpi_c99.c +++ b/src/smpi/smpi_c99.c @@ -4,18 +4,23 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include +#include #include "private.h" -static void smpi_free_static(int status, void* arg) { - free(arg); +static xbt_dynar_t registered_static_stack = NULL; + +void smpi_register_static(void* arg) +{ + if (!registered_static_stack) + registered_static_stack = xbt_dynar_new(sizeof(void*), NULL); + xbt_dynar_push_as(registered_static_stack, void*, arg); } -void smpi_register_static(void* arg) { -#ifndef __APPLE__ - // on_exit is not implemented on Apple. - // That's fine, the memory won't be released on UNIX process terminaison. - // This means that valgrind will report it as leaked (but who cares?) - on_exit(&smpi_free_static, arg); -#endif +void smpi_free_static(void) +{ + while (!xbt_dynar_is_empty(registered_static_stack)) { + void *p = xbt_dynar_pop_as(registered_static_stack, void*); + free(p); + } + xbt_dynar_free(®istered_static_stack); }