shmwrite ID, STRING, POS, SIZE |
从位置POS的SIZE个字节写入字符到指定ID的共享内存段。大小SIZE大于字符串的长度。 shmwrite追加空字节填充的大小字节。
0 on failure
1 on success
试试下面的例子:
#!/usr/bin/perl #by www.gitbook.net # Assume this file name is writer.pl use IPC::SysV; #use these next two lines if the previous use fails. eval 'sub IPC_CREAT {0001000}' unless defined &IPC_CREAT; eval 'sub IPC_RMID {0}' unless defined &IPC_RMID; $key = 12345 $size = 80; $message = "Pennyfarthingale."; # Create the shared memory segment $key = shmget($key, $size, &IPC_CREAT | 0777 ) or die "Can't shmget: $!"; # Place a string in itl shmwrite( $id, $message, 0, 80 ) or die "Can't shmwrite: $!"; sleep 20; # Delete it; shmctl( $id, &OPC_RMID, 0 ) or die "Can't shmctl: $! ";
写入和读取程序中的内存段对应于$key,并读取其内容使用shmread()。
#!/usr/bin/perl #by www.gitbook.net # Assume this file name is reader.pl $key = 12345; $size = 80; # Identify the shared memory segment $id = shmget( $key, $size, 0777 ) or die "Can't shmget: $!"; # Read its contents itno a string shmread($id, $var, 0, $size) or die "Can't shmread: $!"; print $var;
现在首先运行writer.pl程序到后台和然后再运行reader.pl它会产生以下结果。
$perl writer.pl& $perl reader.pl Pennyfrathingale