child.h
来自「Unix网络编程 基于Socket的网络编程」· C头文件 代码 · 共 9 行
H
9 行
typedef struct { pid_t child_pid; /* process ID */ int child_pipefd; /* parent's stream pipe to/from child */ int child_status; /* 0 = ready */ long child_count; /* #connections handled */} Child;Child *cptr; /* array of Child structures; calloc'ed */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?