start page | rating of books | rating of authors | reviews | copyrights

Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: msgctl Chapter 5
Function Reference
Next: Reference: msgrcv
 

msgget

msgget 
key
, 
flags

Calls the System V IPC msgget system call. See the msgget documentation on your system for details. The function returns the message queue ID, or the undefined value if there is an error. On error, it puts the error code into $! . Before calling, you should say:

require "ipc.ph"; require "msg.ph";
This function is available only on machines supporting System V IPC.


Previous: Reference: msgctl Perl in a Nutshell Next: Reference: msgrcv
Reference: msgctl Book Index Reference: msgrcv