#include<apue.h>
#include<signal.h>
static void charatatime(char *str)
{
char *ptr;
int c;
setbuf(stdout,NULL);
for (ptr = str;(c = *ptr++) != 0;)
putc(c,stdout);
}
int main(int argc , char *argv[])
{
pid_t pid;
int i;
TELL_WAIT();
if ((pid = fork()) < 0)
err_sys("fork error");
else if (pid == 0)
{
for (i = 0;i < 10;++i)
{
WAIT_PARENT();
charatatime("ouput from child\n");
}
exit(0);
}
else
{
for (i = 0;i < 10;++i)
{
charatatime("output from parent\n");
TELL_CHILD(pid);
}
}
return 0;
}
它只需打印两次而没有任何循环即可正常工作。但是当我尝试使用for
循环打印更多次时似乎很糟糕......我认为父进程应该在TELL_CHILD(pid)
完成后等待子进程......