/* evnt.h * * author : marco corvi * date : mar 2001 * * simple event support .h file */ #ifndef __LINUX_EVNT_H #define __LINUX_EVNT_H #if defined __KERNEL__ int sys_evntopen( int id ); int sys_evntclose( int id ); int sys_evntwait( int id ); int sys_evntsig( int id ); #include struct evnt_struct { int id; struct wait_queue ** wq; struct evnt_struct * next; }; #endif // __KERNEL__ #endif // __LINUX_EVNT_H