msgsnd ID,MSG,FLAGS

调用 System V IPC 函数 msgsnd 将消息 MSG 发送到消息队列 ID。MSG 必须以本机长整型消息类型开头,后面跟着消息本身。这种打包可以通过 pack("l! a*", $type, $message) 实现。如果成功,则返回 true,如果出错,则返回 false。另请参见 "perlipc 中的 SysV IPC" 以及 IPC::SysVIPC::Msg 的文档。

可移植性问题:"perlport 中的 msgsnd"