CARVIEW |
- #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
.Portability issues: "msgsnd" in perlport.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.