diff options
author | Georg Brandl <georg@python.org> | 2008-05-16 13:10:15 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-16 13:10:15 +0000 |
commit | 5049a858baf3500af5d4eb12838f028aabefc35b (patch) | |
tree | 196f2c8b004f26a074def3cd654766c5eb821f02 /Modules/fcntlmodule.c | |
parent | ca21c65a237f1fbeb6b71ad124c31e9b59a41c98 (diff) | |
download | cpython-git-5049a858baf3500af5d4eb12838f028aabefc35b.tar.gz |
#2890: support os.O_ASYNC and fcntl.FASYNC.
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 96a6cc884b..0c85f477e9 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -510,6 +510,9 @@ all_ins(PyObject* d) if (ins(d, "F_SETLKW64", (long)F_SETLKW64)) return -1; #endif /* GNU extensions, as of glibc 2.2.4. */ +#ifdef FASYNC + if (ins(d, "FASYNC", (long)FASYNC)) return -1; +#endif #ifdef F_SETLEASE if (ins(d, "F_SETLEASE", (long)F_SETLEASE)) return -1; #endif |