描述
此函数调用指定为列表第一个元素的系统调用,将其余元素作为参数传递给系统调用。如果给定参数是数字,则该参数作为 int 传递。如果不是,则传递指向字符串值的指针。
用法
以下是此函数的简单语法 -
syscall EXPR, LIST
返回值
此函数在系统调用失败时返回 -1,成功时由系统函数返回值。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
require("syscall.ph");
$pid = syscall(&SYS_getpid);
print "PID of this process is $pid\n";
# To create directory use the following
$string = "newdir";
syscall( &SYS_mkdir, $string );
执行上述代码时,会产生以下结果 -
PID of this process is 23705
相关用法
- Perl sysread用法及代码示例
- Perl system用法及代码示例
- Perl sysseek用法及代码示例
- Perl sysopen用法及代码示例
- Perl symlink用法及代码示例
- Perl sin()用法及代码示例
- Perl split用法及代码示例
- Perl shmctl用法及代码示例
- Perl splice用法及代码示例
- Perl sqrt()用法及代码示例
- Perl setpriority用法及代码示例
- Perl semget用法及代码示例
- Perl send用法及代码示例
- Perl sort()用法及代码示例
- Perl setpwent用法及代码示例
- Perl sethostent用法及代码示例
注:本文由纯净天空筛选整理自 Perl syscall Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。