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, be followed by the length of the actual message, and then finally 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 the IPC::SysV
and IPC::SysV::Msg
documentation.
Portability issues: msgsnd in perlport.
Please login to continue.