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

int timer_getoverrun(timer_t t)
{
	return syscall(SYS_timer_getoverrun, t->timerid);
}