|
|
| more useful options | |
| PerlMonks |
perlman:IPC::Msgby root (Scribe) |
| on Dec 23, 1999 at 00:52 UTC ( #1226=perlfunc: print w/ replies, xml ) | Need Help?? |
IPC::MsgSee the current Perl documentation for IPC::Msg. Here is our local, out-dated (pre-5.6) version: ![]() IPC::Msg - SysV Msg IPC object class
![]()
use IPC::SysV qw(IPC_PRIVATE S_IRWXU S_IRWXG S_IRWXO);
use IPC::Msg;
$msg = new IPC::Msg(IPC_PRIVATE, S_IRWXU | S_IRWXG | S_IRWXO);
$msg->snd(pack("L a*",$msgtype,$msg));
$msg->rcv($buf,256);
SEE ALSO
AUTHORGraham Barr <gbarr@pobox.com>
COPYRIGHTCopyright (c) 1997 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
|