使用IPC_PRIVATE信号量简单的例子

Posted hgrical_小农

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用IPC_PRIVATE信号量简单的例子相关的知识,希望对你有一定的参考价值。

Linux 信号量的API都定义在sys/sem.h头文件中,主要包含3个系统调用:semget、semop、semctl。

 

附上代码:

#include <sys/sem.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>

union semun
{
     int val;                  
     struct semid_ds* buf;     
     unsigned short int* array;
     struct seminfo* __buf;    
};

void pv( int sem_id, int op )
{
    struct sembuf sem_b;
    sem_b.sem_num = 0;
    sem_b.sem_op = op;
    sem_b.sem_flg = SEM_UNDO;
    semop( sem_id, &sem_b, 1 );
}

int main( int argc, char* argv[] )
{
    int sem_id = semget( IPC_PRIVATE, 1, 0666 );

    union semun sem_un;
    sem_un.val = 1;
    semctl( sem_id, 0, SETVAL, sem_un );

    pid_t id = fork();
    if( id < 0 )
    {
        return 1;
    }
    else if( id == 0 )
    {
        printf( "child try to get binary sem\\n" );
        pv( sem_id, -1 );
        printf( "child get the sem and would release it after 5 seconds\\n" );
        sleep( 5 );
        pv( sem_id, 1 );
        exit( 0 );
    }
    else
    {
        printf( "parent try to get binary sem\\n" );
        pv( sem_id, -1 );
        printf( "parent get the sem and would release it after 5 seconds\\n" );
        sleep( 5 );
        pv( sem_id, 1 );
    }

    waitpid( id, NULL, 0 );
    semctl( sem_id, 0, IPC_RMID, sem_un );
    return 0;
}

 

以上是关于使用IPC_PRIVATE信号量简单的例子的主要内容,如果未能解决你的问题,请参考以下文章

在android中显示隐藏片段

编写高质量代码C#建议72:在线程同步中使用信号量

golang goroutine例子[golang并发代码片段]

分享几个实用的代码片段(附代码例子)

分享几个实用的代码片段(附代码例子)

Qt信号槽机制源码学习