-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab1.c
94 lines (77 loc) · 1.42 KB
/
lab1.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <sys/types.h>
#include <sys/wait.h>
void foo(int arr[], int l, int r)
{
int status;
if(r-l<9)
{
int max = -1;
int i;
for(i=l;i<=r;++i)
{
if(arr[i] > max)
max = arr[i];
}
printf("PID = %d \t parent PID = %d \t max = %d\n",getpid(),getppid(),max);
exit(max);
}
else
{
int cpid1, cpid2;
if((cpid1 = fork()) == 0)
{
r = (l+r)/2;
foo(arr, l, r);
}
else if((cpid2 = fork()) == 0)
{
l = (l+r)/2 + 1;
foo(arr, l, r);
}
else
{
waitpid(cpid1, &status, 0);
int max1 = status >> 8;
waitpid(cpid2, &status, 0);
int max2 = status >> 8;
int max = max1>max2?max1:max2;
printf("PID = %d \t parent PID = %d \t max = %d\n",getpid(),getppid(),max);
exit(max);
}
}
}
int main(int argc, char * argv[])
{
srand((unsigned int)time(NULL));
int arr[110];
int n,i,status;
if(argc!=2)
{
printf("Invalid arguments!!\n");
exit(0);
}
n = atoi(argv[1]);
int cpid;
for(i=0;i<n;++i)
arr[i] = rand()%128;
printf("Original array is : ");
for(i=0;i<n;++i)
printf("%d ",arr[i]);
printf("\n\n");
if((cpid = fork()) == 0)
{
foo(arr, 0, n-1);
}
else
{
waitpid(cpid, &status, 0);
int max = status >> 8;
printf("The maximum value in the array is : %d\n",max);
}
sleep(2);
exit(0);
}