summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2010-03-20 14:59:11 +0100
committerMark Wielaard <mjw@redhat.com>2010-03-21 17:34:41 +0100
commit92ef533e0241eb1a39ef7ceef8dce52e4ae9d820 (patch)
treea3b1602910a23655caad9869abd163724a044173
parent99578461999c233e49190ccf9ad9dee889b17d12 (diff)
downloadsystemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.tar.gz
systemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.tar.xz
systemtap-steved-92ef533e0241eb1a39ef7ceef8dce52e4ae9d820.zip
Add F_DUPFD_CLOEXEC to _fcntl_cmd_str().
-rw-r--r--tapset/aux_syscalls.stp1
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)
}