summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
authorhunt <hunt>2006-06-09 20:51:52 +0000
committerhunt <hunt>2006-06-09 20:51:52 +0000
commite77bc1e7f05d33f74d4627e7a86b2de08086101e (patch)
tree41f6639979f10b09ffc30e692190112e80d247ac /tapset
parenta32e6838f25060b0a62f97cc31c6f3a10fb1fffa (diff)
downloadsystemtap-steved-e77bc1e7f05d33f74d4627e7a86b2de08086101e.tar.gz
systemtap-steved-e77bc1e7f05d33f74d4627e7a86b2de08086101e.tar.xz
systemtap-steved-e77bc1e7f05d33f74d4627e7a86b2de08086101e.zip
2006-06-09 Martin Hunt <hunt@redhat.com>
* syscalls2.stp: Fix sys_sync.
Diffstat (limited to 'tapset')
-rw-r--r--tapset/ChangeLog6
-rw-r--r--tapset/syscalls2.stp5
2 files changed, 7 insertions, 4 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 40076fba..c574975c 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,6 +1,10 @@
2006-06-09 Martin Hunt <hunt@redhat.com>
- * syscalls2.stp: Fixed the uid and gid calls.
+ * syscalls2.stp: Fix sys_sync.
+
+2006-06-09 Martin Hunt <hunt@redhat.com>
+
+ * syscalls2.stp: Fixed the uid and gid calls.
2006-06-09 Li Guanglei <guanglei@cn.ibm.com>
diff --git a/tapset/syscalls2.stp b/tapset/syscalls2.stp
index 872c202f..aa26b75c 100644
--- a/tapset/syscalls2.stp
+++ b/tapset/syscalls2.stp
@@ -1924,12 +1924,11 @@ probe syscall.symlink.return = kernel.function("sys_symlink").return {
# asmlinkage long
# sys_sync(void)
#
-probe syscall.sync = kernel.function("do_sync") {
+probe syscall.sync = kernel.function("sys_sync") {
name = "sync"
- wait = $wait
argstr = ""
}
-probe syscall.sync.return = kernel.function("do_sync").return {
+probe syscall.sync.return = kernel.function("sys_sync").return {
name = "sync"
retstr = returnstr(1)
}