diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-11-12 14:49:52 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-11-12 14:49:52 -0500 |
commit | 3cf29fed2ae7b36527c95c93754a4c0b0e51e749 (patch) | |
tree | ccc0f43d098440c0455bb540d71ead9b9fee1760 /examples/socket-trace.stp | |
parent | 5c2ebe0293f9fee77404d587a264b7c90fd8712a (diff) | |
parent | e55ef4bcc7445ece7c84891edbddfc2682a1443e (diff) | |
download | systemtap-steved-3cf29fed2ae7b36527c95c93754a4c0b0e51e749.tar.gz systemtap-steved-3cf29fed2ae7b36527c95c93754a4c0b0e51e749.tar.xz systemtap-steved-3cf29fed2ae7b36527c95c93754a4c0b0e51e749.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'examples/socket-trace.stp')
-rwxr-xr-x[-rw-r--r--] | examples/socket-trace.stp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/socket-trace.stp b/examples/socket-trace.stp index e574205a..13ab8e06 100644..100755 --- a/examples/socket-trace.stp +++ b/examples/socket-trace.stp @@ -1,4 +1,5 @@ -#! /usr/bin/stap +#! /usr/bin/env stap + probe kernel.function("*@net/socket.c").call { printf ("%s -> %s\n", thread_indent(1), probefunc()) } |