Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca897e9 commit 23e1ecbCopy full SHA for 23e1ecb
2 files changed
Misc/ACKS
@@ -919,6 +919,7 @@ Joel Stanley
919
Oliver Steele
920
Greg Stein
921
Chris Stern
922
+Alex Stewart
923
Victor Stinner
924
Richard Stoakley
925
Peter Stoehr
Modules/fcntlmodule.c
@@ -540,10 +540,13 @@ all_ins(PyObject* d)
540
if (ins(d, "F_SHLCK", (long)F_SHLCK)) return -1;
541
#endif
542
543
-/* OS X (and maybe others) let you tell the storage device to flush to physical media */
+/* OS X specifics */
544
#ifdef F_FULLFSYNC
545
if (ins(d, "F_FULLFSYNC", (long)F_FULLFSYNC)) return -1;
546
547
+#ifdef F_NOCACHE
548
+ if (ins(d, "F_NOCACHE", (long)F_NOCACHE)) return -1;
549
+#endif
550
551
/* For F_{GET|SET}FL */
552
#ifdef FD_CLOEXEC
0 commit comments