多线程信号量

时间:2009-03-25 03:37:08

标签: linux multithreading operating-system posix

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <semaphore.h>
void *thread_function(void *arg);
sem_t bin_sem;
#define WORK_SIZE 1024
char work_area[WORK_SIZE];
int main() {
    int res;
    pthread_t a_thread;
    void *thread_result;
    res = sem_init(&bin_sem, 0, 0);
    if (res != 0) {
        perror(“Semaphore initialization failed”);
        exit(EXIT_FAILURE);
    }
    res = pthread_create(&a_thread, NULL, thread_function, NULL);
    if (res != 0) {
        perror(“Thread creation failed”);
        exit(EXIT_FAILURE);
    }
    printf(“Input some text. Enter ‘end’ to finish\n”);
    while(strncmp(“end”, work_area, 3) != 0) {
        fgets(work_area, WORK_SIZE, stdin);
        sem_post(&bin_sem);
    }
    printf(“\nWaiting for thread to finish...\n”);
    res = pthread_join(a_thread, &thread_result);
    if (res != 0) {
        perror(“Thread join failed”);
        exit(EXIT_FAILURE);
    }
    printf(“Thread joined\n”);
    sem_destroy(&bin_sem);
    exit(EXIT_SUCCESS);
}
void *thread_function(void *arg) {
    sem_wait(&bin_sem);
    while(strncmp(“end”, work_area, 3) != 0) {
         printf(“You input %d characters\n”, strlen(work_area) -1);
         sem_wait(&bin_sem);}
    pthread_exit(NULL);
}

在上面的程序中,当使用sem_post()释放信号量时,是吗? 可能是thread_function中的fgets和count函数执行 同时。我认为这个程序在允许第二个线程时失败了 在主线程再次读取键盘之前计算字符数。 是吗?

2 个答案:

答案 0 :(得分:1)

第二个线程只会在sem_wait返回后读取字符,表示某个地方已经调用了sem_post,所以我觉得没问题。

至于fgets和计数功能,这两个可以同时运行。

在这种情况下,我建议在work_area变量上使用互斥锁,因为如果用户在另一个线程中读取变量时在一个线程中编辑该变量,则会出现问题。

您可以使用互斥锁,也可以使用信号量并将其初始计数设置为1.

如果您实现互斥锁或使用这样的信号量,请确保在sema_wait之后放置mutex_lock,否则可能会发生死锁。

答案 1 :(得分:0)

在此示例中,您希望在读取和放大器周围使用互斥锁。写共享内存。

我知道这是一个例子,但是代码如下:

fgets(work_area, WORK_SIZE, stdin);

应该是:

fgets(work_area, sizeof(work_area), stdin);

如果你将来改变work_area的大小(到其他常量等),很可能会错过更改第二个WORK_SIZE。