- 论坛徽章:
- 0
|
回复 jerrymy
那书的作者也太错了,
这样写,父子进程都会exec,然后就都over了,
奶茶dsk 发表于 2011-06-08 15:18 ![]()
这里应该没错吧,父进程没执行exec啊,难道我对vfork()理解有问题?
我改为下面的也一样的。父进程到底怎么over的实在不明白。。。。
- #include<stdio.h>
- #include<sys/types.h>
- #include<sys/stat.h>
- #include<unistd.h>
- #include<fcntl.h>
- int main(int argc,char *argv[])
- {
- int fd;
- int stat,pid;
- struct stat stbuf;
- time_t old_time = 0;
- if( (fd=open(argv[1],O_WRONLY))==-1 )
- {
- printf("can't ooen watchfile\n");
- return 2;
- }
-
- fstat(fd,&stbuf);
- old_time = stbuf.st_mtime;
- for(;;)
- {
- fd=open(argv[1],O_WRONLY);
- fstat(fd,&stbuf);
- if(old_time != stbuf.st_mtime)
- {
- if (pid = fork() < 0) {
- perror("fork error");
- } else if (pid == 0)
- {
- execl("/bin/cp","/bin/cp",argv[1],argv[2],0);
- return 3;
- }
- wait(&stat);
- old_time = stbuf.st_mtime;
- }
- else
- sleep(20);
- }
- }
复制代码 |
|