daemon.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:1k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. #ifndef _DAEMON_H
  2. #define _DAEMON_H
  3. struct daemon {
  4. char *name;
  5. unsigned stksize;
  6. void (*fp)(int,void *,void *);
  7. };
  8. extern struct daemon Daemons[];
  9. /* In alloc.c: */
  10. void gcollect(int,void*,void*);
  11. /* In main.c: */
  12. void keyboard(int,void*,void*);
  13. void network(int,void *,void *);
  14. void display(int,void *,void *);
  15. /* In kernel.c: */
  16. void killer(int,void*,void*);
  17. /* In random.c: */
  18. void rand_init(int,void*,void*);
  19. /* In timer.c: */
  20. void timerproc(int,void*,void*);
  21. #endif /* _DAEMON_H */