加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
msg_queue_peer.h 632 Bytes
一键复制 编辑 原始数据 按行查看 历史
YunFei 提交于 2024-07-10 17:11 . 视频流程上传完成
/***********************************************************************************
Copy right: Coffee Tech.
Author: jiaoyue
Date: 2019-11-21
Description: 点对点型消息队列组件
***********************************************************************************/
#ifndef MSG_QUEUE_PEER_H
#define MSG_QUEUE_PEER_H
#include "pub_define.h"
#include <sys/ipc.h>
#include <sys/msg.h>
int msg_queue_send(const char *name, const void *msg, size_t msgsz, int msgflg);
int msg_queue_recv(const char *name, void *msg, size_t msgsz, long msgtyp, int msgflg);
#endif // MSG_QUEUE_PEER_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化