- 论坛徽章:
- 0
|
#include<string.h>
#include<unistd.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<stdio.h>
#include<stdlib.h>
#define BUFSIZE 1024
#define CREATE_FLAGS (O_WRONLY | O_CREAT | O_TRUNC)
#define CREATE_PERMS (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
int main (int argc,char *argv[]){
char buf[BUFSIZE];
pid_t childpid=0;
int fd;
int i,n;
if(argc!=3){
fprintf(stderr,"Usage:%s processes filename\n",argv[0]);
return 1;
}
fd= open(argv[2],CREATE_FLAGS,CREATE_PERMS);
if(fd<0){
perror("Failed to open file");
return 1;
}
n=atoi(argv[1]);
for(i=1;i<n;i++)
if(childpid=fork())
break ;
if(childpid==-1){
perror("Failed to fork");
return 1;
}
// sprintf(buf,"i:%d process: %ld\n",i,(long)getpid());
//write(fd,buf,strlen(buf));
//sprintf(buf,"parent:%ld child: %ld\n",(long)getppid(),(long)childpid);
// write(fd,buf,strlen(buf));
sprintf(buf,"i:%d process: %ld parent:%ld child: %ld\n",i,(long)getpid(),(long)getppid(),(long)childpid);
lockf(fd,1,0);
write(fd,buf,strlen(buf));
lockf(fd,0,0);
return 0;
}
程序根据输入命令行参数建立进程链,非别向文件中写入数据,使用了文件加锁,达到互斥。。无论如何都不该有parent:1 阿。。
从六组数据可以看出主进程的父进程是44748
结果6次结果分别是
i:1 process: 45054 parent:44748 child: 45055
i:2 process: 45055 parent:45054 child: 45056
i:3 process: 45056 parent:1 child: 45057
i:4 process: 45057 parent:45056 child: 0
i:1 process: 45069 parent:44748 child: 45070
i:2 process: 45070 parent:45069 child: 45071
i:3 process: 45071 parent:1 child: 45072
i:4 process: 45072 parent:45071 child: 0
i:1 process: 45073 parent:44748 child: 45074
i:2 process: 45074 parent:1 child: 45075
i:3 process: 45075 parent:1 child: 45076
i:4 process: 45076 parent:45075 child: 0
i:1 process: 45079 parent:44748 child: 45080
i:2 process: 45080 parent:1 child: 45081
i:3 process: 45081 parent:1 child: 45082
i:4 process: 45082 parent:45081 child: 0
i:1 process: 45098 parent:44748 child: 45099
i:2 process: 45099 parent:45098 child: 45100
i:3 process: 45100 parent:1 child: 45101
i:4 process: 45101 parent:45100 child: 0
i:1 process: 45088 parent:44748 child: 45089
i:2 process: 45089 parent:45088 child: 45090
i:3 process: 45090 parent:45089 child: 45091
i:4 process: 45091 parent:1 child: 0
上述是运行了6次的结果,问为什么有parent:1这个数据????? |
|