- 论坛徽章:
- 0
|
就是apue2里 8.9. Race Conditions中Program with a race condition的例子.
-
- #include "apue.h"
- static void charatatime(char *);
- int
- main(void)
- {
- pid_t pid;
- if ((pid = fork()) < 0) {
- err_sys("fork error");
- } else if (pid == 0) {
- charatatime("output from child\n");
- } else {
- charatatime("output from parent\n");
- }
- exit(0);
- }
- static void
- charatatime(char *str)
- {
- char *ptr;
- int c;
- setbuf(stdout, NULL); /* set unbuffered */
- for (ptr = str; (c = *ptr++) != 0; )
- putc(c, stdout);
- }
复制代码
我用的是:
Linux debian 2.6.18.1l
gcc version 4.1.2 20061028 (prerelease) (Debian 4.1.1-19)
在gnome终端里运行后没有出现乱序,会不会是gnome终端无法设置
无缓冲输出?请大虾指教. |
|