< prev index next >

src/hotspot/os/posix/semaphore_posix.hpp

Print this page

        

@@ -43,19 +43,11 @@
   void signal(uint count = 1);
 
   void wait();
 
   bool trywait();
-  bool timedwait(unsigned int sec, int nsec) {
-    return timedwait(create_timespec(sec, nsec));
-  }
-
- private:
   bool timedwait(struct timespec ts);
-
-  // OS specific implementation to create a timespec suitable for semaphores.
-  struct timespec create_timespec(unsigned int set, int nsec);
 };
 
 typedef PosixSemaphore SemaphoreImpl;
 
 #endif // OS_POSIX_VM_SEMAPHORE_POSIX_HPP
< prev index next >