|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/systemtap/tapset/ |
Upload File : |
/**
* sfunction system - Issue a command to the system
*
* @cmd: the command to issue to the system
*
* Description: This function runs a command on the system. The
* command is started in the background some time after the current
* probe completes. The command is run with the same UID as the user
* running the stap or staprun command.
*/
function system (cmd:string) %{
_stp_ctl_send(STP_SYSTEM, STAP_ARG_cmd, strlen(STAP_ARG_cmd)+1);
%}