summaryrefslogtreecommitdiff
path: root/java/jdk16/files/patch-j2se::io::io_util.h
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2006-09-09 02:10:02 +0000
committerGreg Lewis <glewis@FreeBSD.org>2006-09-09 02:10:02 +0000
commit6a41bf13e878a509c8a40894b0e8dd5a807114b8 (patch)
treecb565104ca8d1e1a75024244c8cc659bcf760255 /java/jdk16/files/patch-j2se::io::io_util.h
parentReturn to ports@. (diff)
. Prevent problems opening RandomAccessFile with "rws" as the mode by
defining O_SYNC and O_DSYNC if they aren't defined. In particular we were previously defining O_SYNC bogusly to the same value as O_EXCL. PR not closed as this fixes jdk15, not diablo-jdk15. PR: 102888
Notes
Notes: svn path=/head/; revision=172605
Diffstat (limited to 'java/jdk16/files/patch-j2se::io::io_util.h')
-rw-r--r--java/jdk16/files/patch-j2se::io::io_util.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/jdk16/files/patch-j2se::io::io_util.h b/java/jdk16/files/patch-j2se::io::io_util.h
new file mode 100644
index 000000000000..0230858c006c
--- /dev/null
+++ b/java/jdk16/files/patch-j2se::io::io_util.h
@@ -0,0 +1,21 @@
+$FreeBSD$
+
+--- ../../j2se/src/share/native/java/io/io_util.h 8 Nov 2004 22:27:35 -0000 1.1.1.1
++++ ../../j2se/src/share/native/java/io/io_util.h 7 Sep 2006 19:40:19 -0000
+@@ -11,7 +11,15 @@
+ extern jfieldID IO_fd_fdID;
+ extern jfieldID IO_handle_fdID;
+
+-#if !defined(O_DSYNC) || !defined(O_SYNC)
++#ifdef _ALLBSD_SOURCE
++#include <fcntl.h>
++#ifndef O_SYNC
++#define O_SYNC O_FSYNC
++#endif
++#ifndef O_DSYNC
++#define O_DSYNC O_FSYNC
++#endif
++#elif !defined(O_DSYNC) || !defined(O_SYNC)
+ #define O_SYNC (0x0800)
+ #define O_DSYNC (0x2000)
+ #endif