?? daemon.h
字號:
#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 */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -