diff options
author | Mark Wielaard <mjw@redhat.com> | 2010-03-20 14:59:11 +0100 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2010-03-21 17:34:41 +0100 |
commit | 92ef533e0241eb1a39ef7ceef8dce52e4ae9d820 (patch) | |
tree | a3b1602910a23655caad9869abd163724a044173 /tapset | |
parent | 99578461999c233e49190ccf9ad9dee889b17d12 (diff) | |
download | systemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.tar.gz systemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.tar.xz systemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.zip |
Add F_DUPFD_CLOEXEC to _fcntl_cmd_str().
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/aux_syscalls.stp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index dc034d1d..87db5abb 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -1025,6 +1025,7 @@ function _fcntl_cmd_str(cmd) { if(cmd==12) return "F_GETLK64" if(cmd==13) return "F_SETLK64" if(cmd==14) return "F_SETLKW64" + if(cmd==1030) return "F_DUPFD_CLOEXEC" return sprintf("UNKNOWN VALUE: %d", cmd) } |