optimize timer creation and possibly protect against some minor races
[musl] / src / time / timer_getoverrun.c
1 #include <time.h>
2 #include "pthread_impl.h"
3
4 int timer_getoverrun(timer_t t)
5 {
6         return syscall(SYS_timer_getoverrun, t->timerid);
7 }