< prev index next >

src/hotspot/os/posix/os_posix.inline.hpp

Print this page
rev 59103 : imported patch hotspot

@@ -43,12 +43,10 @@
   return _clock_getres != NULL ? _clock_getres(clock_id, tp) : -1;
 }
 
 #endif // SUPPORTS_CLOCK_MONOTONIC
 
-#ifndef SOLARIS
-
 // Platform Mutex/Monitor implementation
 
 inline void os::PlatformMutex::lock() {
   int status = pthread_mutex_lock(mutex());
   assert_status(status == 0, status, "mutex_lock");

@@ -73,8 +71,6 @@
 inline void os::PlatformMonitor::notify_all() {
   int status = pthread_cond_broadcast(cond());
   assert_status(status == 0, status, "cond_broadcast");
 }
 
-#endif // !SOLARIS
-
 #endif // OS_POSIX_OS_POSIX_INLINE_HPP
< prev index next >