描述
该函数调用指定为列表第一个元素的系统调用,并将其余元素作为参数传递给系统调用。如果给定的参数为数字,则该参数作为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
参考链接
https://www.learnfk.com/perl/perl-syscall.html
标签:调用,函数,syscall,pid,无涯,perl,Perl,string From: https://blog.51cto.com/u_14033984/7121511