gpt4 book ai didi

c - System V——后进先出方式

转载 作者:太空狗 更新时间:2023-10-29 12:25:03 25 4
gpt4 key购买 nike

我正在使用 System V 来管理消息队列。我成功地制作了一个工作原型(prototype),一切都按预期工作,但是我想要一个 LIFO 队列而不是 FIFO(预期最后发送的 msgsnd 消息首先读取 msgget)。

这可能吗?

最佳答案

是的,如果您正确管理消息类型。 msgrcv 手册指定:

The argument msgtyp specifies the type of message requested as follows:

  • If msgtyp is 0, the first message on the queue is received.

  • If msgtyp is greater than 0, the first message of type msgtyp is received.

  • If msgtyp is less than 0, the first message of the lowest type that is less than or equal to the absolute value of msgtyp is received.

然后,如果您使用严格递减的 msgtyp 发送消息,则 msgtyp 等于 LONG_MIN 的提取将始终为您提供最后发送的消息。 msgtyp 在这种情况下扮演优先级的角色,1 是最大的。

关于c - System V——后进先出方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44430787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com