-
Notifications
You must be signed in to change notification settings - Fork 1
/
Trabalho_Fork.cpp
129 lines (92 loc) · 2.47 KB
/
Trabalho_Fork.cpp
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include <locale.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/types.h>
//Variáveis Globais
double tempo;
int pid;
int numForks;
void menu() {
int opcao;
printf( "╔═════════════════════════════╗\n");
printf( "╠ 1 - Execução de Referência ║\n");
printf( "╠ 2 - Criar forks ║\n");
printf( "╠ 3 - Sair ║\n");
printf( "╠═════════════════════════════╝\n");
printf( "╠ ");
scanf("%i", &opcao);
switch (opcao) {
case 1:
numForks = 1;
break;
case 2:
printf( "║\n");
printf( "╠ Quantos forks deseja criar?\n");
printf( "║\n");
printf( "╠ ");
scanf("%i", &numForks);
numForks++;
break;
case 3:
exit(0);
break;
default:
printf("Número incorreto, tente novamente...\n");
menu();
break;
}
}
double raiz_2(){
struct timeval tempo1, tempo2;
struct timezone tzp;
long double x = 1, xn;
long double iteracoes = 0, i = 1;
iteracoes = 999999999;
gettimeofday(&tempo1, &tzp);
//-------------------------------------------------------
while (i <= iteracoes) {
xn = x;
x = xn/2 + 1/xn;
i++;
}
//-------------------------------------------------------
gettimeofday(&tempo2, &tzp);
//printf("\nRaiz de 2 = %.20Lf\n", x);
tempo = (double) (tempo2.tv_sec - tempo1.tv_sec) + (((double) (tempo2.tv_usec - tempo1.tv_usec)) / 1000000);
}
int main(){
menu();
char url[]="results.txt";
FILE *arq;
arq = fopen(url, "a+");
if(arq == NULL) {
printf("Erro, nao foi possivel abrir o arquivo\n");
fclose(arq);
}
fprintf(arq, "--------------------------------------------\n");
fprintf(arq, "\n--------------------------------------------\n");
fprintf(arq, "- Execução com %2.1i processos - %2.1i FORK -\n", numForks, numForks - 1);
fclose(arq);
printf( "║\n");
//Criação dos Forks
for(int i=0; i < numForks-1; i++) {
if(pid == 0) {
pid = fork();
if(pid < 0) {
exit(1);
}
}
}
raiz_2();
arq = fopen(url, "a+");
if(pid == 0)
fprintf(arq, "- PAI - %.30f -\n", tempo);
else
fprintf(arq, "- %5.1d - %.30f -\n", pid, tempo);
fclose(arq);
printf( "╠ PID: %5.1d - Tempo decorrido: %.30f segundos\n", pid, tempo);
//Fim Criação dos Forks
return 0;
}