mirror of
https://github.com/ptitSeb/box86.git
synced 2024-11-27 08:50:28 +00:00
20 lines
316 B
C
Executable File
20 lines
316 B
C
Executable File
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
void forkexample()
|
|
{
|
|
int x = 1;
|
|
|
|
if (fork() == 0)
|
|
printf("Child has x = %d\n", ++x);
|
|
else {
|
|
usleep(20000);
|
|
printf("Parent has x = %d\n", --x);
|
|
}
|
|
}
|
|
int main()
|
|
{
|
|
forkexample();
|
|
return 0;
|
|
}
|