POSIX Semaphore sem_wait() 无限阻塞

Posted

技术标签:

【中文标题】POSIX Semaphore sem_wait() 无限阻塞【英文标题】:POSIX Semaphore sem_wait () is blocking infinitely 【发布时间】:2018-10-08 08:23:26 【问题描述】:

我正在尝试使用以下代码测试 POSIX 信号量,但问题 sem_wait 函数无限阻塞程序,一旦它工作,我想从多个进程尝试相同的代码。如果代码中缺少任何内容,请告诉我。

代码如下:

#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include <fcntl.h> 
#include <sys/shm.h> 
#include <sys/stat.h> 
#include <sys/mman.h>
#include <semaphore.h>

void SysInit(void);
void CriticalSection(void);

const char* name = "OS"; 
const char* SemaphoreName = "ShareObject";
sem_t *Sem_SharedMemory_t;

int main() 
 
    SysInit();
    while(1)
    
        CriticalSection();
    
    return 0; 
 

void SysInit(void)

    printf("-----------------In System Init Section_1--------------------\n");

    if ((Sem_SharedMemory_t = sem_open(SemaphoreName, O_CREAT, 0644, 1)) < 0)  //Opens semaphore
    
        perror("sem_open");
        exit(1);
    
    printf("-----------------Semaphore Id:%d--------------------\n",Sem_SharedMemory_t);


void CriticalSection(void)

   int i;
   printf("Before Entering Critical Section:%d\n",Sem_SharedMemory_t);
   if(sem_wait(Sem_SharedMemory_t) < 0)  //Blocking section 
   
       perror("sem_wait");
       return;
   
   printf("Before Loop\n");
   for(i=0;i<3;i++)
   
       printf("In Critical Section_1, Count i:%d\n",i);
       sleep(1);
   
   if(sem_post(Sem_SharedMemory_t) < 0)
   
     perror("sem_wait");
         return;
   

【问题讨论】:

您的操作系统和 libc 版本是什么?示例代码不会阻止我,我不明白为什么会这样。 操作系统是 Ubantu 16.04。 【参考方案1】:

在创建/打开信号量之前使用 sem_unlink() 解决了我的问题。

谢谢

代码如下:

int main() 
 
    sem_unlink(SemaphoreName);
    SysInit();
    while(1)
    
    CriticalSection();
    
    return 0; 
 

【讨论】:

以上是关于POSIX Semaphore sem_wait() 无限阻塞的主要内容,如果未能解决你的问题,请参考以下文章

奇怪的 POSIX 信号量行为(卡在 Linux 上的 sem_wait 上)

posix和system v 信号量哪个更快

急!LINUX下,GCC编译,原程序包含<semaphore.h>头文件,为啥编译时说sem_wait,sem_post等未定义的引用

C - POSIX:共享内存

C 语言编程 — semaphore 信号量操作

POSIX 信号量上限