Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Receive a SysV IPC message fro ...SysV semaphore control operations (Berikutnya)
System V interprocess communication functions

Send a SysV IPC message to a message queue

Daftar Isi

  • msgsnd ID,MSG,FLAGS

    Calls the System V IPC function msgsnd to send the message MSG to themessage queue ID. MSG must begin with the native long integer messagetype, be followed by the length of the actual message, and then finallythe message itself. This kind of packing can be achieved withpack("l! a*", $type, $message). Returns true if successful,false on error. See also the IPC::SysVand IPC::SysV::Msg documentation.

    Portability issues: msgsnd in perlport.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Receive a SysV IPC message fro ...SysV semaphore control operations (Berikutnya)