linux的msgget函数,msgget()函数 Unix/Linux

msgget -得到一个消息队列标识符

内容简介

#include

#include

#include

int msgget(key_tkey, intmsgflg);

描述

Themsgget() system call returns the message queue identifier associated with the value of thekeyargument. A new message queue is created ifkeyhas the valueIPC_PRIVATEorkeyisn’tIPC_PRIVATE, no message queue with the given keykeyexists, andIPC_CREATis specified inmsgflg.

If msgflg specifies both IPC_CREAT and IPC_EXCL and a message queue already exists for key, then msgget() fails with errno set to EEXIST. (This is analogous to the effect of the combination O_CREAT | O_EXCL for open(2).)

Upon creation, the least significant bits of the argument msgflg define the permissions of the message queue. These permission bits have the same format and semantics as the permissions specified for the mode argument of open(2). (The execute permissions are not used.)

If a new message queue is created, then its associated data structure msqid_ds (seemsgctl(2)) is initialised as follows:

标签

描述

msg_perm.cuid and msg_perm.uid are set to the effective user ID of the calling process.

msg_perm.cgid and msg_perm.gid are set to the effective group ID of the calling process.

The least significant 9 bits of msg_perm.mode are set to the least significant 9 bits of msgflg.

msg_qnum, msg_lspid, msg_lrpid, msg_stime and msg_rtime are set to 0.

msg_ctime is set to the current time.

msg_qbytes is set to the system limit MSGMNB.

如果消息队列中已经存在的权限进行了验证,并进行检查,看它是否被标记销毁。

返回值

If successful, the return value will be the message queue identifier (a nonnegative integer), otherwise -1 witherrnoindicating the error.

错误

On failure,errnois set to one of the following values:

标签

描述

EACCES

A message queue exists for key, but the calling process does not have permission to access the queue, and does not have the CAP_IPC_OWNER capability.

EEXIST

A message queue exists for key and msgflg specified bothIPC_CREAT and IPC_EXCL.

ENOENT

No message queue exists for key and msgflg did not specifyIPC_CREAT.

ENOMEM

A message queue has to be created but the system does not have enough memory for the new data structure.

ENOSPC

A message queue has to be created but the system limit for the maximum number of message queues (MSGMNI) would be exceeded.

注意

IPC_PRIVATEisn’t a flag field but akey_ttype. If this special value is used forkey, the system call ignores everything but the least significant 9 bits ofmsgflgand creates a new message queue (on success).

The following is a system limit on message queue resources affecting a msgget() call:

标签

描述

MSGMNI

System wide maximum number of message queues: policy dependent (on Linux, this limit can be read and modified via/proc/sys/kernel/msgmni).

BUGS

The name choice IPC_PRIVATE was perhaps unfortunate, IPC_NEW would more clearly show its function.

遵循于

SVr4, POSIX.1-2001.

LINUX 注意

Until version 2.3.20 Linux would return EIDRM for amsgget() on a message queue scheduled for deletion.

另请参阅

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值