masters-thesis/listings/struct_sample.h
Dennis af25b4b828 Initial commit of master's thesis
This is the version I submitted to RWTH Aachen University at November 9,
2018.
2018-11-12 12:56:59 +01:00

20 lines
285 B
C

struct sample {
uint64_t sequence;
int length;
int capacity;
int flags;
struct list *signals;
atomic_int refcnt;
ptrdiff_t pool_off;
struct {
struct timespec origin;
struct timespec received;
} ts;
union signal_data data[];
};