免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1320 | 回复: 1
打印 上一主题 下一主题

关于一个io操作 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-17 01:05 |只看该作者 |倒序浏览
#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这个数据?????

论坛徽章:
0
2 [报告]
发表于 2008-12-17 09:10 |只看该作者

回复 #1 beijingmaxiao 的帖子

这个是调用错误
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP