daemon.h
来自「网友张巍提供的tcpip协议栈,是一个成功稳定的以太网接口上的TCP/IP协议程」· C头文件 代码 · 共 30 行
H
30 行
#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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?