BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
81bf78b
Branches
Tags
master
uproctrace
liblwptpl
src
destructor.c
lwpttr -> lwptev
Stefan Schuermans
commited
81bf78b
at 2020-05-17 18:09:10
destructor.c
Blame
History
Raw
#include <liblwptev/proc_end.h> #include "write.h" #include <stdlib.h> __attribute__((destructor)) static void destructor(void) { void *data = NULL; size_t size = 0; lwptev_proc_end(&data, &size); lwptpl_write(data, size); }