exo 1 + pgl

This commit is contained in:
Debucquoy
2023-10-24 15:48:13 +02:00
parent 2649bc9a54
commit dfe4fd3729
3 changed files with 64 additions and 0 deletions

17
bac2/os/chap3/ex1.c Normal file
View File

@ -0,0 +1,17 @@
#include <unistd.h>
#include <stdio.h>
#define printv(x) printf("%s = %d\n", (#x), (x))
int main(void)
{
int f1, f2, f3;
f1 = fork();
printv(f1);
f2 = fork();
printv(f2);
f3 = fork();
printv(f3);
printf(" all => %d, %d, %d\n", f1, f2, f3);
}