diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-01-08 00:52:40 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-01-08 00:52:40 +0100 |
commit | 2716d531a1e2553bc6df43852357053370ff8bb0 (patch) | |
tree | 6082404f45490ebd6cf3d6d30a3ec1e044237219 /Modules/fcntlmodule.c | |
parent | c99b5120a7389323fce2d41dbbe15d04589ad0a0 (diff) | |
download | cpython-git-2716d531a1e2553bc6df43852357053370ff8bb0.tar.gz |
fcntl: add F_DUPFD_CLOEXEC constant, available on Linux 2.6.24+.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r-- | Modules/fcntlmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 550902690c..bc2c181dce 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -461,6 +461,9 @@ all_ins(PyObject* d) #ifdef F_DUPFD if (ins(d, "F_DUPFD", (long)F_DUPFD)) return -1; #endif +#ifdef F_DUPFD_CLOEXEC + if (ins(d, "F_DUPFD_CLOEXEC", (long)F_DUPFD_CLOEXEC)) return -1; +#endif #ifdef F_GETFD if (ins(d, "F_GETFD", (long)F_GETFD)) return -1; #endif |