Commit 248e983e by Michael Koch Committed by Michael Koch

2003-06-07 Michael Koch <konqueror@gmx.de>

	* include/posix.h
	(O_DSYNC): Define O_DSYNC on platforms not
	supporting O_FSYNC (newlib).

From-SVN: r67587
parent 8c560c80
2003-06-07 Michael Koch <konqueror@gmx.de>
* include/posix.h
(O_DSYNC): Define O_DSYNC on platforms not
supporting O_FSYNC (newlib).
2003-06-06 Mark Wielaard <mark@klomp.org> 2003-06-06 Mark Wielaard <mark@klomp.org>
* java/awt/Toolkit.java (getDefaultToolkit): Add exception cause to * java/awt/Toolkit.java (getDefaultToolkit): Add exception cause to
......
...@@ -56,6 +56,10 @@ details. */ ...@@ -56,6 +56,10 @@ details. */
#if !defined (O_DSYNC) && defined (O_FSYNC) #if !defined (O_DSYNC) && defined (O_FSYNC)
#define O_DSYNC O_FSYNC #define O_DSYNC O_FSYNC
#endif #endif
// If O_DSYNC is still not defined, use O_SYNC (needed for newlib)
#if !defined (O_DSYNC)
#define O_DSYNC O_SYNC
#endif
// Separator for file name components. // Separator for file name components.
#define _Jv_platform_file_separator ((jchar) '/') #define _Jv_platform_file_separator ((jchar) '/')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment