- Perl 基础
- Perl - 主页
- Perl - 简介
- Perl - 环境
- Perl - 语法概述
- Perl - 数据类型
- Perl - 变量
- Perl - 标量
- Perl - 数组
- Perl - 散列表
- Perl - IF...ELSE
- Perl - 循环
- Perl - 运算符
- Perl - 日期和时间
- Perl - 子例程
- Perl - 引用
- Perl - 格式
- Perl - 文件 I/O
- Perl - 目录
- Perl - 错误处理
- Perl - 特殊变量
- Perl - 编码标准
- Perl - 正则表达式
- Perl - 发送电子邮件
- Perl 高级知识
- Perl - 套接字编程
- Perl - 面向对象
- Perl - 数据库访问
- Perl - CGI 编程
- Perl - 包和模块
- Perl - 进程管理
- Perl - 内嵌文档
- Perl - 函数引用
- Perl 有用资源
- Perl - 问题和解答
- Perl - 快速指南
- Perl - 有用资源
- Perl - 讨论
Perl shmctl 函数
说明
此函数利用 CMD 和 ARG 控制 ID 所引用的共享内存段。你需要导入 IPC::SysV 模块,以获取表中下面定义的命令令牌。
Command Description IPC_STAT Places the current value of each member of the data structure associated with ID into the scalar ARG IPC_SET Sets the value of the following members o of the data structure associated with ID to the corresponding values found in the packed scalar ARG IPC_RMID Removes the shared memory identifier specified by ID from the system and destroys the shared memory segment and data structure associated with it SHM_LOCK Locks the shared memory segment specified by ID in memory SHM_UNLOCK Unlocks the shared memory segment specified by ID
语法
以下是该函数的简单语法 −
shmctl ID, CMD, ARG
返回值
如果失败,此函数返回未定义值,但如果 shmctl( ) 的返回值为 0,则返回 0(但为真)。
示例
以下是展示基本用法示例代码 −
#!/usr/bin/perl # 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: $! ";
编写一个读程序,用于使用 shmread() 检索与 $key 对应的内存段并读取其内容。
#!/usr/bin/perl # 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
perl_function_references.htm
广告