【问题标题】:Multithreading Semaphore多线程信号量
【发布时间】:2010-10-15 08:58:37
【问题描述】:
#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 和计数函数可能执行 同时。而且我认为这个程序无法允许第二个线程 在主线程再次读取键盘之前计算字符数。 对吗?

【问题讨论】:

标签: linux multithreading operating-system posix


【解决方案1】:

在此示例中,您希望在共享内存的读写周围有一个互斥锁。

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

fgets(work_area, WORK_SIZE, stdin);

应该是:

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

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

【讨论】:

    【解决方案2】:

    第二个线程只会在 sem_wait 返回后读取字符,这表明某个地方已经调用了 sem_post,所以我认为这很好。

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

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

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

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-10-28
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-10-29
      • 1970-01-01
      相关资源
      最近更新 更多