diff options
Diffstat (limited to 'libjava/include/posix.h')
-rw-r--r-- | libjava/include/posix.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/include/posix.h b/libjava/include/posix.h index 521b16f..447cada 100644 --- a/libjava/include/posix.h +++ b/libjava/include/posix.h @@ -49,6 +49,13 @@ extern jlong _Jv_platform_gettimeofday (); extern void _Jv_platform_initialize (void); extern void _Jv_platform_initProperties (java::util::Properties*); +inline void +_Jv_platform_close_on_exec (jint fd) +{ + // Ignore errors. + ::fcntl (fd, F_SETFD, FD_CLOEXEC); +} + #ifndef DISABLE_JAVA_NET static inline int @@ -69,13 +76,6 @@ _Jv_close (jint fd) return ::close (fd); } -inline void -_Jv_platform_close_on_exec (jint fd) -{ - // Ignore errors. - ::fcntl (fd, F_SETFD, FD_CLOEXEC); -} - // Avoid macro definitions of bind from system headers, e.g. on // Solaris 7 with _XOPEN_SOURCE. FIXME inline int |