Compare commits

...

2 Commits

Author SHA1 Message Date
3b2380d0f7 Remove for loop with join 2025-09-24 16:33:31 +03:00
979c68ea29 Add gitignores 2025-03-10 17:14:47 +03:00
3 changed files with 6 additions and 4 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bin/

4
lab01/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
encrypted
decrypted
example

View File

@ -176,10 +176,6 @@ int main(int argc, char *argv[]) {
pthread_barrier_wait(&barrier);
for (int i = 0; i < workers_count; i++) {
pthread_join(workers[i]->id, NULL);
}
pthread_barrier_destroy(&barrier);
munmap(input, cfg.size);