2021-03-10 17:42:09 +01:00
|
|
|
//
|
|
|
|
// Wrote for Computer Networks and Systems lab classes
|
|
|
|
// AUTHOR : Sergiusz Warga
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2021-03-10 19:46:05 +01:00
|
|
|
#include <time.h>
|
2021-03-10 17:42:09 +01:00
|
|
|
|
|
|
|
void parent_before_child() {
|
|
|
|
pid_t pid;
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("\nparent_before_child()\n");
|
2021-03-10 17:42:09 +01:00
|
|
|
pid = fork();
|
|
|
|
if (pid == -1) { // If something went wrong.
|
|
|
|
perror("Fork: ");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if (pid != 0) { // If this is a parent process.
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("===\nI am a parent.\nMy PID is: %d\n===", getpid());
|
|
|
|
kill(getpid(), SIGTERM);
|
2021-03-10 17:42:09 +01:00
|
|
|
} else {
|
|
|
|
sleep(1);
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("===\nI am a child.\nMy PID is: %d\n===", getpid()); // This line will not be printed, as (usually) parent process will finish
|
|
|
|
// its execution in less than 1 second
|
2021-03-10 17:42:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void child_before_parent() {
|
|
|
|
pid_t pid;
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("\nchild_before_parent()\n");
|
|
|
|
printf("PID before fork: %d\n", getpid());
|
2021-03-10 17:42:09 +01:00
|
|
|
pid = fork();
|
|
|
|
if (pid == -1) { // If something went wrong.
|
|
|
|
perror("Fork: ");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if (pid == 0) { // If this is a parent process.
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("===\nI am a child.\nMy PID is: %d\n===", getpid());
|
|
|
|
kill(getpid(), SIGTERM);
|
2021-03-10 17:42:09 +01:00
|
|
|
} else {
|
|
|
|
sleep(1);
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("===\nI am a parent.\nMy PID is: %d\n===", getpid());
|
2021-03-10 17:42:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-10 19:46:05 +01:00
|
|
|
double time_from_exec(clock_t begin) {
|
|
|
|
return (double)(clock() - begin)/CLOCKS_PER_SEC;
|
|
|
|
}
|
|
|
|
|
2021-03-10 17:42:09 +01:00
|
|
|
int main() {
|
2021-03-10 19:46:05 +01:00
|
|
|
clock_t begin = clock();
|
2021-03-10 17:42:09 +01:00
|
|
|
pid_t pid;
|
2021-03-10 19:46:05 +01:00
|
|
|
printf("%f: Grandparent process has PID: %d\n", time_from_exec(begin), getpid());
|
2021-03-10 17:42:09 +01:00
|
|
|
pid = fork();
|
2021-03-10 19:46:05 +01:00
|
|
|
if (pid == 0) { // If child process
|
|
|
|
printf("%f: Process with PID %d will execute funs.\n", time_from_exec(begin), getpid());
|
2021-03-10 17:42:09 +01:00
|
|
|
child_before_parent();
|
|
|
|
sleep(1);
|
|
|
|
parent_before_child();
|
|
|
|
sleep(1);
|
2021-03-10 19:46:05 +01:00
|
|
|
} else { // If parent process
|
|
|
|
printf("%f: Grandparent's child process has PID: %d\n", time_from_exec(begin), pid);
|
|
|
|
sleep(5);
|
2021-03-10 17:42:09 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|