diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-20 18:33:38 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-20 18:33:38 -0400 |
commit | cf96be783e89607e1b8b755bbd08ba41b564c4fc (patch) | |
tree | 8c93ecf1a596d2f72ec6b1bd51517c57504d4bbb /tapset/signal.stp | |
parent | 2d6640ba82d5f243bcd3165fa11576a7cfee8c57 (diff) | |
download | systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.tar.gz systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.tar.xz systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.zip |
PR6538: tapset changes
Diffstat (limited to 'tapset/signal.stp')
-rw-r--r-- | tapset/signal.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/signal.stp b/tapset/signal.stp index ec947eb7..72ba9520 100644 --- a/tapset/signal.stp +++ b/tapset/signal.stp @@ -63,7 +63,7 @@ probe _signal.send.part2 = kernel.function("send_group_sigqueue") { name = "send_group_sigqueue" task = $p - # sinfo = $q->info + sinfo = 0 # $q->info shared = 1 send2queue = 1 } @@ -72,7 +72,7 @@ probe _signal.send.part3 = kernel.function("send_sigqueue") { name = "send_sigqueue" task = $p - # sinfo = $q->info + sinfo = 0 # $q->info shared = 0 send2queue = 1 } |