fork example

This commit is contained in:
damage 2024-08-26 22:00:11 +02:00
parent 877cf3e76a
commit 240a5d5ebf
2 changed files with 31 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.vscode
fork

30
fork.c Normal file
View File

@ -0,0 +1,30 @@
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
int main() {
for (int start = 0; start < 50; start += 10) {
pid_t pid = fork();
if (pid == -1) {
fprintf(stderr, "Error forking: %s\n", strerror(errno));
return 1;
} else if (pid == 0) {
// I AM FORK!
for (int i = start; i < start + 10; i++) {
printf("%d: %d\n", pid, i);
}
printf("Fork %d finished counting from %d\n", getpid(), start);
return 0;
} else {
printf("Fork %d successfull\n", pid);
}
}
fork();
fork();
fork();
printf("Hello World\n");
}