
linux
文章平均质量分 77
xMars
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
signal.h /usr/include/asm/signal.h
#ifndef _ASMi386_SIGNAL_H#define _ASMi386_SIGNAL_H#include /* Avoid too many header ordering problems. */struct siginfo;#define SIGHUP 1#define SIGINT 2#define SIGQUIT 3#define SIGILL 4原创 2004-12-23 20:44:00 · 2363 阅读 · 1 评论 -
sample_fork.c
#include #include #include int main(){ pid_t pid=0; if((pid=fork())>0) printf("I am the parent,my pid %u,my childs pid=%u/n",getpid(),pid); else if (pid==0) printf("I am原创 2004-12-23 20:26:00 · 1787 阅读 · 1 评论