summaryrefslogtreecommitdiff
path: root/src/time/timer_getoverrun.c
blob: fa7715bbe73f47e03a3a28d5a66210f771eb6e74 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <time.h>
#include "pthread_impl.h"

int timer_getoverrun(timer_t t)
{
	if ((uintptr_t)t & 1) t = (void *)((unsigned long)t / 2);
	else t = ((pthread_t)t)->result;
	return syscall(SYS_timer_getoverrun, (long)t);
}