summaryrefslogtreecommitdiffstats
path: root/tapset/system.stp
diff options
context:
space:
mode:
authorhunt <hunt>2007-03-14 16:19:37 +0000
committerhunt <hunt>2007-03-14 16:19:37 +0000
commite65b03c170887fa9076119afd123a7384c12c630 (patch)
tree1cf3a108a3dbb33f66eb7de64268896ce5b388da /tapset/system.stp
parent8c235ce57600584d3126ad86520b4fb44765c8ec (diff)
downloadsystemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.tar.gz
systemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.tar.xz
systemtap-steved-e65b03c170887fa9076119afd123a7384c12c630.zip
2007-03-14 Martin Hunt <hunt@redhat.com>
* Makefile.am (staprun_SOURCES): Sources now live in runtime/staprun. * makefile.in: Rebuilt. * staprun.8.in: Updated. * buildrun.cxx (run_pass): Use "-v" instead of not "-q" to be compatible with latest staprun. * translate.cxx (emit_module_exit): Print warning using _stp_printf so it shows up at the end of all output. (translate_pass): Replace STP_RELAYFS with STP_BULKMODE. Eliminate STP_RELAYFS_MERGE.
Diffstat (limited to 'tapset/system.stp')
-rw-r--r--tapset/system.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/system.stp b/tapset/system.stp
index 83e35989..8e779a6d 100644
--- a/tapset/system.stp
+++ b/tapset/system.stp
@@ -1,3 +1,3 @@
function system (cmd:string) %{
- _stp_write(STP_SYSTEM, THIS->cmd, strlen(THIS->cmd)+1);
+ _stp_ctl_write(STP_SYSTEM, THIS->cmd, strlen(THIS->cmd)+1);
%}