qira/tests/forktest.c

15 lines
219 B
C
Raw Normal View History

2014-07-18 12:01:34 -07:00
#include <stdio.h>
int main() {
printf("FORK TEST\n");
fflush(stdout);
fork();
printf("hi %d\n", getpid());
/*if (fork() == 0) {
printf("hello child\n");
} else {
printf("world parent\n");
}*/
}