posix.h (_Jv_platform_usleep): Wrap in ifdef JV_HASH_SYNCHRONIZATION.
authorTom Tromey <tromey@redhat.com>
Tue, 7 Jan 2003 16:50:08 +0000 (16:50 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 7 Jan 2003 16:50:08 +0000 (16:50 +0000)
* include/posix.h (_Jv_platform_usleep): Wrap in ifdef
JV_HASH_SYNCHRONIZATION.
* include/win32.h (_Jv_platform_usleep): Wrap in ifdef
JV_HASH_SYNCHRONIZATION.

From-SVN: r60998

libjava/ChangeLog
libjava/include/posix.h
libjava/include/win32.h

index d33591262c3ea27f8c44f581211d42915b082633..e7e4ae61a16666fe4e6a3f79ff3676ccaaf5192f 100644 (file)
@@ -1,3 +1,10 @@
+2003-01-07  Tom Tromey  <tromey@redhat.com>
+
+       * include/posix.h (_Jv_platform_usleep): Wrap in ifdef
+       JV_HASH_SYNCHRONIZATION.
+       * include/win32.h (_Jv_platform_usleep): Wrap in ifdef
+       JV_HASH_SYNCHRONIZATION.
+
 2003-01-07  Michael Koch  <konqueror@gmx.de>
  
        * java/net/DatagramSocket.java:
index 859db6e6ba10bb841594256896de6632982287ca..0e1220a10b3834279885c353417a874bba391d52 100644 (file)
@@ -1,6 +1,6 @@
 // posix.h -- Helper functions for POSIX-flavored OSs.
 
-/* Copyright (C) 2000, 2002  Free Software Foundation
+/* Copyright (C) 2000, 2002, 2003  Free Software Foundation
 
    This file is part of libgcj.
 
@@ -60,11 +60,13 @@ _Jv_platform_close_on_exec (jint fd)
   ::fcntl (fd, F_SETFD, FD_CLOEXEC);
 }
 
+#ifdef JV_HASH_SYNCHRONIZATION
 inline void
 _Jv_platform_usleep (unsigned long usecs)
 {
   usleep (usecs);
 }
+#endif /* JV_HASH_SYNCHRONIZATION */
 
 #ifndef DISABLE_JAVA_NET
 
index 8ba6ef2053c554d5621565c199abc4a5ef4cc0a7..5de8211a9a97c21be33b8e13793870722c2da6c5 100644 (file)
@@ -48,6 +48,7 @@ _Jv_platform_close_on_exec (jint)
   // Ignore.
 }
 
+#ifdef JV_HASH_SYNCHRONIZATION
 /* Suspends the execution of the current thread for the specified
    number of microseconds.  Tries to emulate the behaviour of usleep()
    on UNIX and provides a granularity of 1 millisecond.  */
@@ -60,6 +61,7 @@ _Jv_platform_usleep (unsigned long usecs)
       Sleep (millis);
     }
 }
+#endif /* JV_HASH_SYNCHRONIZATION */
 
 #ifndef DISABLE_JAVA_NET