[Linux管道和IPC]使用msgctl删除消息队列

发布时间:2020-07-07 14:56:32 作者:银河星君
来源:网络 阅读:1738
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>

int main(int argc,char *argv[])
{
  int qid;
  int ret;
  if(argc < 2)
  {
    printf("请输入正确的键值\n");
    exit(0);
  }
  qid = atoi(argv[1]);  //获取键值
  ret = msgctl(qid,IPC_RMID,NULL);  //删除消息队列
  if(ret < 0)
  {
    printf("删除消息队列失败.\n");
    exit(0);
  }
  else
  {
    printf("删除消息队列成功.\n");
  }
  return 0;
}


推荐阅读:
  1. 如何用python处理一万份word表格简历操作
  2. Android如何在一个app中安装并卸载另一个app

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

linux管道 ct

上一篇:Python中的main函数有什么用

下一篇:使用linux的fbset命令设置景框缓冲区

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》