summaryrefslogtreecommitdiff
path: root/src/unistd/alarm.c
blob: a5e0c822a05559ffaa2023ab8b6fca3d20f1af63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>
#include <sys/time.h>
#include "syscall.h"

unsigned alarm(unsigned seconds)
{
	struct itimerval it = { .it_value.tv_sec = seconds }, old = { 0 };
	setitimer(ITIMER_REAL, &it, &old);
	return old.it_value.tv_sec + !!old.it_value.tv_usec;
}