1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

valgrind: call atexit() handlers to release memory

This commit is contained in:
Steffen Vogel 2017-04-24 18:59:12 +02:00
parent 414fcc72f1
commit 89a7f15186
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ static void quit(int signal, siginfo_t *sinfo, void *ctx)
info(GRN("Goodbye!"));
_exit(EXIT_SUCCESS);
exit(EXIT_SUCCESS);
}
static void usage()

View file

@ -65,7 +65,7 @@ static void quit(int signal, siginfo_t *sinfo, void *ctx)
super_node_destroy(&sn);
info(GRN("Goodbye!"));
_exit(EXIT_SUCCESS);
exit(EXIT_SUCCESS);
}
static void usage()