diff options
author | zhaolei <zhaolei> | 2007-11-21 08:19:38 +0000 |
---|---|---|
committer | zhaolei <zhaolei> | 2007-11-21 08:19:38 +0000 |
commit | c6bf00e1c6f63656cebac8ee72a3b095d37525c5 (patch) | |
tree | 7529154d4894fe5af74fb72c858f79b7269dca30 /tapset | |
parent | cbbe8080060563441ba79ed4645e9b533a870409 (diff) | |
download | systemtap-steved-c6bf00e1c6f63656cebac8ee72a3b095d37525c5.tar.gz systemtap-steved-c6bf00e1c6f63656cebac8ee72a3b095d37525c5.tar.xz systemtap-steved-c6bf00e1c6f63656cebac8ee72a3b095d37525c5.zip |
2007-11-21 Zhaolei <zhaolei@cn.fujitsu.com>
From Bai Weidong <baiwd@cn.fujitsu.com>
* syscalls2.stp (rt_sigsuspend): Fix the semantic error caused by
the difference of kernel versions on IA64.
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 6 | ||||
-rw-r--r-- | tapset/syscalls2.stp | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index d5b32bf1..49ccfbfa 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,9 @@ +2007-11-21 Zhaolei <zhaolei@cn.fujitsu.com> + + From Bai Weidong <baiwd@cn.fujitsu.com> + * syscalls2.stp (rt_sigsuspend): Fix the semantic error caused by + the difference of kernel versions on IA64. + 2007-11-14 Zhaolei <zhaolei@cn.fujitsu.com> From Lai Jiangshan <laijs@cn.fujitsu.com> diff --git a/tapset/syscalls2.stp b/tapset/syscalls2.stp index 9c84f23d..7029e09c 100644 --- a/tapset/syscalls2.stp +++ b/tapset/syscalls2.stp @@ -1017,14 +1017,16 @@ probe syscall.rt_sigreturn.return = # probe syscall.rt_sigsuspend = kernel.function("sys_rt_sigsuspend") ?, - kernel.function("compat_sys_rt_sigsuspend") ? + kernel.function("compat_sys_rt_sigsuspend") ?, + kernel.function("ia64_rt_sigsuspend") ? { name = "rt_sigsuspend" argstr = "" } probe syscall.rt_sigsuspend.return = kernel.function("sys_rt_sigsuspend").return ?, - kernel.function("compat_sys_rt_sigsuspend").return ? + kernel.function("compat_sys_rt_sigsuspend").return ?, + kernel.function("ia64_rt_sigsuspend").return ? { name = "rt_sigsuspend" retstr = returnstr(1) |