diff options
author | fche <fche> | 2007-08-10 15:39:42 +0000 |
---|---|---|
committer | fche <fche> | 2007-08-10 15:39:42 +0000 |
commit | 199f43f63cafc331d1834f86f0fee8e7b0d03b1a (patch) | |
tree | c1239289d1605e36663dd267ec900ec3c55d65ac | |
parent | 69a8052f3b44293e76e60213e1aca9881b311984 (diff) | |
download | systemtap-steved-199f43f63cafc331d1834f86f0fee8e7b0d03b1a.tar.gz systemtap-steved-199f43f63cafc331d1834f86f0fee8e7b0d03b1a.tar.xz systemtap-steved-199f43f63cafc331d1834f86f0fee8e7b0d03b1a.zip |
2007-08-10 Frank Ch. Eigler <fche@elastic.org>
From "Zhaolei" zhaolei@cn.fujitsu.com:
* aux_syscalls.stp (_sockopt_optname_str): Add SO_SND/RCVBUFFORCE.
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/aux_syscalls.stp | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index b92f7aa6..17d9a358 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2007-08-10 Frank Ch. Eigler <fche@elastic.org> + + From "Zhaolei" zhaolei@cn.fujitsu.com: + * aux_syscalls.stp (_sockopt_optname_str): Add SO_SND/RCVBUFFORCE. + 2007-08-09 Frank Ch. Eigler <fche@elastic.org> From Cai Fei <caifei@cn.fujitsu.com>: diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index 758cd878..d700758e 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -1395,6 +1395,8 @@ function _sockopt_optname_str(opt) { if(opt==19) return "SO_SNDLOWAT" if(opt==20) return "SO_RCVTIMEO" if(opt==21) return "SO_SNDTIMEO" + if(opt==32) return "SO_SNDBUFFORCE" + if(opt==33) return "SO_RCVBUFFORCE" return "" } |