BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
d355298
Branches
Tags
master
uproctrace
liblwptpl
src
constructor.c
first incomplete begin_proc event
Stefan Schuermans
commited
d355298
at 2020-05-17 10:22:00
constructor.c
Blame
History
Raw
#include <liblwpttr/event.h> #include "write.h" #include <stdlib.h> __attribute__((constructor)) static void constructor(void) { void *data = NULL; size_t size = 0; lwpttr_event_proc_begin(&data, &size); lwptpl_write(data, size); }