timer_create (2) Linux Manual Page
timer_create – create a POSIX per-process timer Synopsis#include <signal.h> #include <time.h> int timer_create(clockid_t clockid, struct sigevent *sevp, timer_t *timerid);Link with -lrt. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): timer_create(): _POSIX_C_SOURCE >= 199309L Descriptiontimer_create() creates a new per-process interval timer. The ID of the new timer is returned in the buffer pointed to by timerid, which must…
