ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

进程间通信--信号量

2021-12-01 22:33:11  阅读:201  来源: 互联网

标签:信号量 -- void 间通信 int semaphore sem union


1.信号量
信号量是一个特殊变量,只允许对它进行等待和发送信号这两种操作。在linux编程中,“等待”和“发送信号”分别对应P和V操作。
那么如何理解P和V操作呢?做一个简单的例子,假设有两个进程proc1和proc2,这两个进程都需要在执行过程中的某个时刻对一个内存区进行独占式的访问。我们定义一个二进制信号量sv,该变量的初始值为1,两个进程都可以访问它。一旦其中一个进程执行了P操作,他将得到信号量,并且可以进入临界区域,此时sv值减1。而第二个进程将被阻止进入临界区。当它试图执行P操作时,它将被挂起直到第一个进程离开临界区域并执行V操作释放信号量,简要过程如下图:
在这里插入图片描述
用C语言实现这个过程,具体需要用到以下几个函数的配合。

(1)linux的信号机制
#include <sys/sem.h>

int semget(key_t key, int num_sems, int sem_flags);
作用是创建一个新信号量或取得一个已有信号量的键
第一个参数key是整数值,他是一个信号量键,通过这个键,此函数生成一个相应的信号量标识符。
第二个参数num_sems指定需要的信号量数目。它几乎总是取值为1。
第三个参数是sem_flag,开权限。
返回值:成功,返回其他信号量函数将用到的信号量标识符。

int semop(int sem_id, struct sembuf *sem_ops, size_t num_sem_ops);
作用是用于改变信号量的值。
第一个参数是semget返回的信号量标识符
第二个参数指向一个结构数组的指针,包含信号量编号,信号量在一次操作中需要改变的值,SEM_UNDO。

int semctl(int sem_id, int sem_num, int command, …);
这个函数用来控制信号量信息。
第一个参数sem_id是由semget返回的信号量标识符。
第二个参数sem_num参数是信号量编号,当需要用到成组的信号量时,需要用到这个参数,它一般取值为0,表示这是第一个也是唯一一个信号量。
第三个参数command参数是将要采取的动作。
如果还有第四个参数,它将会是一个union semun结构。

下面用实例来理解一下,这些函数到底怎么用。用两个不同字符的输出来表示进入和离开临界区域。如果程序启动时带有一个参数,它将在进入和退出临界区域时打印字符X;而程序的其他运行实例将在进入和退出临界区域时打印字符O。因为在任一给定时刻,只有一个进程可以进入临界区域,所以字符X和O时成对出现的。

semun.h //有些Linux系统不包含这个头,会报错,手动添加即可。

#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
    /* union semun is defined by including <sys/sem.h> */
#else
    /* according to X/OPEN we have to define it ourselves */
    union semun {
        int val;                    /* value for SETVAL */
        struct semid_ds *buf;       /* buffer for IPC_STAT, IPC_SET */
        unsigned short int *array;  /* array for GETALL, SETALL */
        struct seminfo *__buf;      /* buffer for IPC_INFO */
    };
#endif

sem1.c

/* After the #includes, the function prototypes and the global variable, we come to the
 main function. There the semaphore is created with a call to semget, which returns the
 semaphore ID. If the program is the first to be called (i.e. it's called with a parameter
 and argc > 1), a call is made to set_semvalue to initialize the semaphore and op_char is
 set to X. */

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>

#include <sys/sem.h>

#include "semun.h"

static int set_semvalue(void);
static void del_semvalue(void);
static int semaphore_p(void);
static int semaphore_v(void);

static int sem_id;


int main(int argc, char *argv[])
{
    int i;
    int pause_time;
    char op_char = 'O';

    srand((unsigned int)getpid());
   
    sem_id = semget((key_t)1234, 1, 0666 | IPC_CREAT);

    if (argc > 1) {
        if (!set_semvalue()) {
            fprintf(stderr, "Failed to initialize semaphore\n");
            exit(EXIT_FAILURE);
        }
        op_char = 'X';
        sleep(2);
    }

/* Then we have a loop which enters and leaves the critical section ten times.
 There, we first make a call to semaphore_p which sets the semaphore to wait, as
 this program is about to enter the critical section. */

    for(i = 0; i < 10; i++) {        

        if (!semaphore_p()) exit(EXIT_FAILURE);
        printf("%c", op_char);fflush(stdout);
        pause_time = rand() % 3;
        sleep(pause_time);
        printf("%c", op_char);fflush(stdout);

/* After the critical section, we call semaphore_v, setting the semaphore available,
 before going through the for loop again after a random wait. After the loop, the call
 to del_semvalue is made to clean up the code. */

        if (!semaphore_v()) exit(EXIT_FAILURE);
       
        pause_time = rand() % 2;
        sleep(pause_time);
    }    

    printf("\n%d - finished\n", getpid());

    if (argc > 1) {    
        sleep(10);
        del_semvalue();
    }
       
    exit(EXIT_SUCCESS);
}

/* The function set_semvalue initializes the semaphore using the SETVAL command in a
 semctl call. We need to do this before we can use the semaphore. */

static int set_semvalue(void)
{
    union semun sem_union;

    sem_union.val = 1;
    if (semctl(sem_id, 0, SETVAL, sem_union) == -1) return(0);
    return(1);
}

/* The del_semvalue function has almost the same form, except the call to semctl uses
 the command IPC_RMID to remove the semaphore's ID. */

static void del_semvalue(void)
{
    union semun sem_union;
   
    if (semctl(sem_id, 0, IPC_RMID, sem_union) == -1)
        fprintf(stderr, "Failed to delete semaphore\n");
}

/* semaphore_p changes the semaphore by -1 (waiting). */

static int semaphore_p(void)
{
    struct sembuf sem_b;
   
    sem_b.sem_num = 0;
    sem_b.sem_op = -1; /* P() */
    sem_b.sem_flg = SEM_UNDO;
    if (semop(sem_id, &sem_b, 1) == -1) {
        fprintf(stderr, "semaphore_p failed\n");
        return(0);
    }
    return(1);
}

/* semaphore_v is similar except for setting the sem_op part of the sembuf structure to 1,
 so that the semaphore becomes available. */

static int semaphore_v(void)
{
    struct sembuf sem_b;
   
    sem_b.sem_num = 0;
    sem_b.sem_op = 1; /* V() */
    sem_b.sem_flg = SEM_UNDO;
    if (semop(sem_id, &sem_b, 1) == -1) {
        fprintf(stderr, "semaphore_v failed\n");
        return(0);
    }
    return(1);
}

标签:信号量,--,void,间通信,int,semaphore,sem,union
来源: https://blog.csdn.net/weixin_42937012/article/details/121665892

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有