Posted on 2009-09-27 15:43
Prayer 阅读(275)
评论(1) 编辑 收藏 引用 所属分类:
LINUX/UNIX/AIX
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <memory.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/msg.h>
int main(){
pid_t id;
id=fork();
printf("test [%d]\n",id);
if(id==0){
printf("zijincheng\n");
}
else if(id>0){
printf("[%d]\n",id);
}
else{
printf("错误\n");
}
return 0;
}
test [0]
zijincheng
test [630900]
[630900]