- shmctl ID,CMD,ARG
-
Calls the System V IPC function shmctl. You'll probably have to say
System V IPC 関数 shmctl を呼び出します。 正しい定数定義を得るために、まず
use IPC::SysV;
first to get the correct constant definitions. If CMD is
IPC_STAT
, then ARG must be a variable that will hold the returnedshmid_ds
structure. Returns like ioctl: undef for error; "0
but true" for zero; and the actual return value otherwise. See also "SysV IPC" in perlipc and the documentation forIPC::SysV
.と書くことが必要でしょう。 CMD が、
IPC_STAT
ならば、ARG は、返されるshmid_ds
構造体を 納める変数でなければなりません。 ioctl と同様です: エラー時には undef; ゼロのときは "0
だが真"; それ以外なら、その値そのものを返します。 "SysV IPC" in perlipc および、IPC::SysV
の文書も 参照してください。Portability issues: "shmctl" in perlport.
移植性の問題: "shmctl" in perlport。