Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Get SysV IPC message queueSend a SysV IPC message to a m ... (Berikutnya)
System V interprocess communication functions

Receive a SysV IPC message from a message queue

Daftar Isi

  • msgrcv ID,VAR,SIZE,TYPE,FLAGS

    Calls the System V IPC function msgrcv to receive a message frommessage queue ID into variable VAR with a maximum message size ofSIZE. Note that when a message is received, the message type as anative long integer will be the first thing in VAR, followed by theactual message. This packing may be opened with unpack("l! a*").Taints the variable. Returns true if successful, false on error. See also SysV IPC in perlipc and the documentation forIPC::SysV and IPC::SysV::Msg.

    Portability issues: msgrcv 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) Get SysV IPC message queueSend a SysV IPC message to a m ... (Berikutnya)