BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
38f7d8c
Branches
Tags
master
uproctrace
libuptpl
src
destructor.c
rename: lwproctrace -> uproctrace
Stefan Schuermans
commited
38f7d8c
at 2020-05-21 09:57:55
destructor.c
Blame
History
Raw
#include <uptev/proc_end.h> #include "write.h" #include <stdlib.h> __attribute__((destructor)) static void destructor(void) { void *data = NULL; size_t size = 0; uptev_proc_end(&data, &size); uptpl_write(data, size); }