-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
69 lines (59 loc) · 1.91 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
void attrs(int procc, FILE *file)
{
char *name;
switch (procc)
{
case 0:
name = "Предок";
break;
case 1:
name = "Потомок1";
break;
case 2:
name = "Потомок2";
break;
default:
printf("ошибка вывода атрибутов");
return;
}
fprintf(file, "%s %s %d %s %d\n",name, " идентификатор процесса: ", getpid(), "Процесс № ", procc);
fprintf(file, "%s %s %d %s %d\n",name, " идентификатор группы процессов: ", getpgid(getpid()), "Процесс № ", procc);
fprintf(file, "%s %s %d %s %d\n",name, " идентификатор сеанса процесса: ", getsid(getpid()), "Процесс № ", procc);
fprintf(file, "%s %s %d %s %d\n",name, " идентификатор предка: ", getppid(), "Процесс № ", procc);
}
int main(int argc, char * argv[]) {
char *arg[] = { "lab3_1_1", "file1.txt", argv[3], (char *) 0 };
if (fork() == 0)
{
printf("Дочерний процесс 1:\n");
sleep(atoi(argv[2]));
FILE *f1 = fopen("file1.txt", "a");
attrs(1, f1);
fclose(f1);
return 0;
}
else
{
if (vfork() == 0)
{
printf("Дочерний процесс 2:\nЗапускаю exec.....\n");
if (execv(arg[0], arg) == -1)
{
printf("ошибка\n");
printf("%d\n", errno);
}
printf("Это никогда не выведется!\n");
return 0;
}
sleep(atoi(argv[1]));
FILE *f = fopen("file1.txt", "a");
attrs(0, f);
fclose(f);
}
printf("конец\n");
return 0;
}