- msgsnd ID,MSG,FLAGS
-
Calls the System V IPC function msgsnd to send the message MSG to the message queue ID. MSG must begin with the native long integer message type, followed by the message itself. This kind of packing can be achieved with
pack("l! a*", $type, $message)
. Returns true if successful, false on error. See also "SysV IPC" in perlipc and the documentation forIPC::SysV
andIPC::Msg
.System V IPC 関数 msgsnd を呼び出し、メッセージキュー ID に メッセージ MSG を送信します。 MSG の先頭は、ネイティブな long 整数のメッセージタイプでなければならず、 メッセージ本体が続きます。 これは、
pack("l! a*", $type, $message)
として生成できます。 成功時には真を、エラー時には偽を返します。 "SysV IPC" in perlipc および、IPC::SysV
とIPC::Msg
の文書も参照してください。Portability issues: "msgsnd" in perlport.
移植性の問題: "msgsnd" in perlport。