Я пытаюсь создать код, который печатает с семафорами, но код не запускается, и я не могу найти свою ошибку.
Я также пытался pthread_join
, но это то же самое: он не будет печатать, несмотря ни на что.
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <string.h>
#include <semaphore.h>
sem_t f1, f2, f3;
int done = 1;
void *threadfunc(void *n) {
int a = 0;
while (1) {
if ((int)*(int *)n == 1) {
//printf("1st THREAD!\n");
printf("<ONE>");
sem_wait(&f1);
} else if ((int)*(int *)n == 2) {
//printf("2st THREAD!\n");
printf("<TWO>");
sem_wait(&f2);
} else {
//printf("3st THREAD!\n");
printf("<THREE>");
sem_wait(&f3);
}
//}
if (done == 3) {
done = 1;
sem_post(&f1);
} else if (done == 1) {
done = 2;
sem_post(&f2);
} else if (done == 2) {
done = 3;
sem_post(&f3);
}
}
}
int main() {
pthread_t tid1, tid2, tid3;
int n1 = 1, n2 = 2, n3 = 3;
for (;;) {
// Create 3 threads
pthread_create(&tid1, NULL, threadfunc, (void *)&n1);
sleep(1);
pthread_create(&tid2, NULL, threadfunc, (void *)&n2);
sleep(1);
pthread_create(&tid3, NULL, threadfunc, (void *)&n3);
sleep(1);
// infinite loop to avoid exit of a program/process
}
return 0;
}
Ожидаемый результат: ONE TWO THREE ONE TWO THREE
и т. Д. .
Фактический вывод: нет