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