1998-11-15 20:21:49 +03:00
|
|
|
/* $NetBSD: timer_settime.c,v 1.3 1998/11/15 17:23:00 christos Exp $ */
|
1998-01-09 06:15:09 +03:00
|
|
|
|
1997-04-17 23:07:15 +04:00
|
|
|
#include <signal.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
1998-11-15 20:21:49 +03:00
|
|
|
/* ARGSUSED */
|
1997-04-17 23:07:15 +04:00
|
|
|
int
|
|
|
|
timer_settime(timerid, flags, value, ovalue)
|
|
|
|
timer_t timerid;
|
|
|
|
int flags;
|
|
|
|
const struct itimerspec *value;
|
|
|
|
struct itimerspec *ovalue;
|
|
|
|
{
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|