linux消息队列的使用及内核实现原理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux消息队列的使用及内核实现原理相关的知识,希望对你有一定的参考价值。

mq_receive

NAME
       mq_open - open a message queue

SYNOPSIS
       #include <fcntl.h>           /* For O_* constants */
       #include <sys/stat.h>        /* For mode constants */
       #include <mqueue.h>

       mqd_t mq_open(const char *name, int oflag);
       mqd_t mq_open(const char *name, int oflag, mode_t mode,
                     struct mq_attr *attr);

       Link with -lrt.

 

以上是关于linux消息队列的使用及内核实现原理的主要内容,如果未能解决你的问题,请参考以下文章

linux内核无锁缓冲队列kfifo原理

进程间通信(消息队列, 信号量)

消息队列mq的原理及实现方法

linux内核分析———SLAB原理及实现

消息队列如何保证消息不丢失

Java常用消息队列原理介绍及性能对比