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:
parent
414fcc72f1
commit
89a7f15186
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue