840c0b18e9990fe15416283f869bc8532c1bbf3a
Stefan Schuermans add copyright headers and l...

Stefan Schuermans authored 4 years ago

libuptev/include/uptev/proc_begin.h  1) /**
libuptev/include/uptev/proc_begin.h  2)  * UProcTrace: User-space Process Tracing
libuptev/include/uptev/proc_begin.h  3)  * Copyright 2020: Stefan Schuermans, Aachen, Germany <stefan@schuermans.info>
libuptev/include/uptev/proc_begin.h  4)  * Copyleft: GNU LESSER GENERAL PUBLIC LICENSE version 3 (see LICENSE)
libuptev/include/uptev/proc_begin.h  5)  */
libuptev/include/uptev/proc_begin.h  6) 
Stefan Schuermans rename: lwproctrace -> upro...

Stefan Schuermans authored 4 years ago

libuptev/include/uptev/proc_begin.h  7) #ifndef UPTEV_PROC_BEGIN_H
libuptev/include/uptev/proc_begin.h  8) #define UPTEV_PROC_BEGIN_H
Stefan Schuermans first incomplete begin_proc...

Stefan Schuermans authored 4 years ago

liblwpttr/include/liblwpttr/event.h  9) 
liblwpttr/include/liblwpttr/event.h 10) #include <stdlib.h>
liblwpttr/include/liblwpttr/event.h 11) 
liblwpttr/include/liblwpttr/event.h 12) /**
liblwpttr/include/liblwpttr/event.h 13)  * @brief make a process begin event
liblwpttr/include/liblwpttr/event.h 14)  * @param[out] *data pointer to event data (malloc-ed)
liblwpttr/include/liblwpttr/event.h 15)  * @param[out] *size size of data
liblwpttr/include/liblwpttr/event.h 16)  * @return 0 on success (*data, *size set),
liblwpttr/include/liblwpttr/event.h 17)  *         -1 on error (*data = NULL, *size = 0)
liblwpttr/include/liblwpttr/event.h 18)  */
Stefan Schuermans rename: lwproctrace -> upro...

Stefan Schuermans authored 4 years ago

libuptev/include/uptev/proc_begin.h 19) int uptev_proc_begin(void **data, size_t *size);
Stefan Schuermans first incomplete begin_proc...

Stefan Schuermans authored 4 years ago

liblwpttr/include/liblwpttr/event.h 20)