From: Martin v. Löwis Date: Thu, 18 Oct 2001 22:05:36 +0000 (+0000) Subject: Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. X-Git-Tag: v2.2.1c1~1166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fe3c273233ced82cb7443f0ec4caea5a8836df1;p=python Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d7d7c3ffb4..22f70b1692 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -5870,6 +5870,23 @@ all_ins(PyObject *d) #ifdef O_TEXT if (ins(d, "O_TEXT", (long)O_TEXT)) return -1; #endif +#ifdef O_LARGEFILE + if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1; +#endif + +/* GNU extensions. */ +#ifdef O_DIRECT + /* Direct disk access. */ + if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1; +#endif +#ifdef O_DIRECTORY + /* Must be a directory. */ + if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1; +#endif +#ifdef O_NOFOLLOW + /* Do not follow links. */ + if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1; +#endif #ifdef HAVE_SPAWNV if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;