fixes init script for non ipv6 enabled systems #472755
[packages/xinetd.git] / xinetd / xtimer.h
1 /*
2  * (c) Copyright 1998-2001 by Rob Braun
3  * All rights reserved.  The file named COPYRIGHT specifies the terms 
4  * and conditions for redistribution.
5  */
6
7 #ifndef _X_TIMER_H
8 #define _X_TIMER_H
9
10 #include <sys/time.h>
11 #include <unistd.h>
12
13 struct xtime {
14         void     (*timerfunc)(void);
15         time_t   when;
16         int xtid;
17 };
18 typedef struct xtime xtime_h;
19
20 int xtimer_add( void (*func)(void), time_t );
21 int xtimer_poll(void);
22 int xtimer_remove(int);
23 time_t xtimer_nexttime(void);
24
25 #endif /* _X_TIMER_H */