-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
38 lines (29 loc) · 848 Bytes
/
main.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
#include <iostream>
#include <string>
#include <vector>
#include <thread>
#include "RepositorioProtected.h"
#include "eBPF.h"
#include "ResultadoProtected.h"
#define POS_INICIAL 2
int main(int argc, char const *argv[]) {
if (argc < 3) {
std::cout << "./tp <num hilos> <archivo> [<archivo>...]" << std::endl;
return 0;
}
int cant_hilos = std::stoi(argv[1]);
Repositorio nombres_archivos(&argv[2], argc-2);
RepositorioProtected nombres_archivos_protegido(nombres_archivos);
std::vector<std::thread> threads;
Resultado resultados;
ResultadoProtected resultados_protegido(resultados);
for (int i = 0; i < cant_hilos; ++i) {
threads.push_back(std::thread {eBPF(nombres_archivos_protegido,
resultados_protegido)});
}
for (int i = 0; i < cant_hilos; ++i) {
threads[i].join();
}
resultados.imprimir();
return 0;
}