u-isdn/include/sys/callout.h

16 lines
297 B
C
Raw Normal View History

#if !defined(__sys_callout_h)
#define __sys_callout_h
1996-12-11 13:18:33 +00:00
#ifndef __KERNEL__
#include <sys/types.h>
1996-12-11 13:18:33 +00:00
#endif
struct callout {
int c_time; /* incremental time */
void * c_arg; /* argument to routine */
int (*c_func)(void *); /* routine */
struct callout *c_next;
};
#endif /* __sys_callout_h */