-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicio_1.c
55 lines (39 loc) · 985 Bytes
/
ejercicio_1.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
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <stdlib.h>
#include <sys/wait.h>
void imprimirNivel(int numProc);
void imprimirTabulacion(int nivelTabulacion);
int main() {
int numberOfProcccess;
char numero[20];
char *p;
printf("Ingrese el nivel del arbol de procesos: ");
fgets(numero, 20, stdin);
long int valor = strtol(numero, &p, 10);
printf("%s\n", p);
if (valor == 0) {
printf("Ingrese un valor valido\n");
exit(0);
}
imprimirNivel(valor);
wait(NULL);
return 0;
}
void imprimirNivel(int numProc) {
printf("Nivel: %d, %d\n", 0, getpid());
for (int i = 0; i < numProc; i++) {
fork();
imprimirTabulacion(i + 1);
printf("Nivel: %d, %d\n", i + 1, getpid());
//usleep(9000); // Argumento en microsegundos.
sleep(1); // Argumento en segundos.
}
}
void imprimirTabulacion(int nivelTabulacion) {
for (size_t i = 0; i < nivelTabulacion; i++) {
printf("\t");
}
}