Perl 系统调用函数


描述

该函数调用指定为列表第一个元素的系统调用,并将其余元素作为参数传递给系统调用。如果给定参数是数字,则该参数作为 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_function_references.htm