times |
返回给用户,系统,子和子系统时间为当前进程和其子四元素的列表。
数组, ($usertime, $systemtime, $childsystem, $childuser)
在运行该程序根(root用户):
#!/usr/bin/perl -w ($usertime, $systemtime, $childsystem, $childuser) = times(); print("times() $usertime $systemtime $childsystem $childuser\n");
这将产生以下结果:
times() 0 0 0 0