diff options
author | Dave Brolley <brolley@redhat.com> | 2009-03-31 12:21:26 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-03-31 12:21:26 -0400 |
commit | dff5b6a2d7a63b4554d1320c0603dc8757b9c8a7 (patch) | |
tree | cd139bae97c71558ccabdc3f69471d8e6a35049b /tapset/socket.stp | |
parent | 8f2b14197e7db279434c5b063b755d1121c137de (diff) | |
parent | c5746f91b1ba8f374b4230e16cb33e1b9206ca2b (diff) | |
download | systemtap-steved-dff5b6a2d7a63b4554d1320c0603dc8757b9c8a7.tar.gz systemtap-steved-dff5b6a2d7a63b4554d1320c0603dc8757b9c8a7.tar.xz systemtap-steved-dff5b6a2d7a63b4554d1320c0603dc8757b9c8a7.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/socket.stp')
-rw-r--r-- | tapset/socket.stp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tapset/socket.stp b/tapset/socket.stp index 0f01b8d4..de778d7c 100644 --- a/tapset/socket.stp +++ b/tapset/socket.stp @@ -545,6 +545,7 @@ probe socket.close.return = kernel.function ("sock_release").return /** * sfunction sock_prot_num2str - Given a protocol number, return a string representation. + * @proto: The protocol number. */ function sock_prot_num2str:string (proto:long) { @@ -553,6 +554,7 @@ function sock_prot_num2str:string (proto:long) /** * sfunction sock_prot_str2num - Given a protocol name (string), return the corresponding protocol number. + * @proto: The protocol name. */ function sock_prot_str2num:long (proto:string) { @@ -563,6 +565,7 @@ function sock_prot_str2num:long (proto:string) /** * sfunction sock_fam_num2str - Given a protocol family number, return a string representation. + * @family: The family number. */ function sock_fam_num2str:string (family:long) { @@ -572,6 +575,7 @@ function sock_fam_num2str:string (family:long) /** * sfunction sock_fam_str2num - Given a protocol family name (string), return the corresponding * protocol family number. + * @family: The family name. */ function sock_fam_str2num:long (family:string) { @@ -582,6 +586,7 @@ function sock_fam_str2num:long (family:string) /** * sfunction sock_state_num2str - Given a socket state number, return a string representation. + * @state: The state number. */ function sock_state_num2str:string (state:long) { @@ -590,6 +595,7 @@ function sock_state_num2str:string (state:long) /** * sfunction sock_state_str2num - Given a socket state string, return the corresponding state number. + * @state: The state name. */ function sock_state_str2num:long (state:string) { |