diff options
author | ddomingo <ddomingo@redhat.com> | 2009-03-18 15:29:19 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2009-03-18 15:29:19 +1000 |
commit | 8391565d6f48a6fea6f5ea29dcc8790125039278 (patch) | |
tree | 696c34d3ec7e6fa4f34574a0f06a68b37682e342 | |
parent | 98b35fa37e2d00fae488f37ccf124c0899fcdcbf (diff) | |
download | systemtap-steved-8391565d6f48a6fea6f5ea29dcc8790125039278.tar.gz systemtap-steved-8391565d6f48a6fea6f5ea29dcc8790125039278.tar.xz systemtap-steved-8391565d6f48a6fea6f5ea29dcc8790125039278.zip |
minor edits
-rw-r--r-- | tapset/signal.stp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tapset/signal.stp b/tapset/signal.stp index 711ee70f..e8470a9c 100644 --- a/tapset/signal.stp +++ b/tapset/signal.stp @@ -31,7 +31,7 @@ * @send2queue: Indicates whether the signal is sent to an existing * <command>sigqueue</command> * @name: The name of the function used to send out the signal - * + * * Context: * The signal's sender. * @@ -124,10 +124,10 @@ probe _signal.send.part3 = kernel.function("send_sigqueue") * @send2queue: Indicates whether the sent signal was sent to an * existing <command>sigqueue</command> * @name: The name of the function used to send out the signal - * + * * Context: * The signal's sender. <remark>(correct?)</remark> - * + * * Possible <command>__group_send_sig_info</command> and * <command>specific_send_sig_info</command> return values are as follows; * @@ -139,19 +139,18 @@ probe _signal.send.part3 = kernel.function("send_sigqueue") * * <command>-EAGAIN</command> -- The <command>sigqueue</command> of the receiving process is * overflowing, the signal was RT, and the signal was sent by a user using something other - * than <command>kill()</command> - * + * than <command>kill()</command>. + * * Possible <command>send_group_sigqueue</command> and * <command>send_sigqueue</command> return values are as follows; - * + * * <command>0</command> -- The signal was either sucessfully added into the * <command>sigqueue</command> of the receiving process, or a <command>SI_TIMER</command> entry is already * queued (in which case, the overrun count will be simply incremented). * * <command>1</command> -- The signal was ignored by the receiving process. * - * - * <command>-1</command> - (<command>send_sigqueue</command> only) The task was marked + * <command>-1</command> -- (<command>send_sigqueue</command> only) The task was marked * <command>exiting</command>, allowing * <command>posix_timer_event</command> to redirect it to the group * leader. * |