diff options
author | hunt <hunt> | 2006-03-06 20:56:30 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-03-06 20:56:30 +0000 |
commit | b5d2ccfd70b526e16e8fe36a4395b6c787bcb794 (patch) | |
tree | c49a4190895b88a889cdaea3a4d62756f842cddc | |
parent | 70404fc597fe283753bb2f86f95c4c9f008f324d (diff) | |
download | systemtap-steved-b5d2ccfd70b526e16e8fe36a4395b6c787bcb794.tar.gz systemtap-steved-b5d2ccfd70b526e16e8fe36a4395b6c787bcb794.tar.xz systemtap-steved-b5d2ccfd70b526e16e8fe36a4395b6c787bcb794.zip |
2006-03-06 Martin Hunt <hunt@redhat.com>
* system.stp: New tapset.
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rw-r--r-- | tapset/system.stp | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 3724eed0..bdad3877 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,7 @@ +2006-03-06 Martin Hunt <hunt@redhat.com> + + * system.stp: New tapset. + 2006-03-01 Martin Hunt <hunt@redhat.com> * aux_syscalls.stp (_struct_sockaddr_u): Parse sockaddr. diff --git a/tapset/system.stp b/tapset/system.stp new file mode 100644 index 00000000..83e35989 --- /dev/null +++ b/tapset/system.stp @@ -0,0 +1,3 @@ +function system (cmd:string) %{ + _stp_write(STP_SYSTEM, THIS->cmd, strlen(THIS->cmd)+1); +%} |