《unix高级编程学习笔记》第8章

     在第八章,竞争条件中出现了作者自己定义的TELL_WAIT()函数,编译时会提示出错,解决办法如下:

     这是因为在编译时没有将tellwai.c文件加入,这个文件在/home/usr/apue.2e/lib/中,将这个文件复制到 /usr/include/下,并在apue.h中#include<tellwait.c>即可。

    将书上的例子改了一下,可以控制子进程先于父进程执行:

#include"apue.h"
#include<error.c>
static void charatatime(char *);
int
main()
{
 pid_t pid;
 TELL_WAIT();
 if((pid=fork())<0)
  err_sys("fork error.");
 
 if(pid == 0)
 {
  
  charatatime("output from child\n");
  TELL_PARENT(getppid());  //子进程执行完后给父进程发个信号
 }
 else
 {
  TELL_CHILD(pid);  //可以理解为呼叫子进程,等待信号
  WAIT_CHILD();       //等待子进程信号
  charatatime("output from parent\n");
 }
 exit(0);
}
static void
charatatime(char *str)
{
 char *ptr;
 int c;
 setbuf(stdout,NULL);
 for(ptr=str;(c=*ptr++)!=0;)
  putc(c,stdout);
}

你可能感兴趣的:(《unix高级编程学习笔记》第8章)