daemon.h
资源名称:export.zip [点击查看]
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:1k
源码类别:
TCP/IP协议栈
开发平台:
Visual C++
- #ifndef _DAEMON_H
- #define _DAEMON_H
- struct daemon {
- char *name;
- unsigned stksize;
- void (*fp)(int,void *,void *);
- };
- extern struct daemon Daemons[];
- /* In alloc.c: */
- void gcollect(int,void*,void*);
- /* In main.c: */
- void keyboard(int,void*,void*);
- void network(int,void *,void *);
- void display(int,void *,void *);
- /* In kernel.c: */
- void killer(int,void*,void*);
- /* In random.c: */
- void rand_init(int,void*,void*);
- /* In timer.c: */
- void timerproc(int,void*,void*);
- #endif /* _DAEMON_H */