author | kbarrett |
Sat, 25 Jul 2015 02:22:32 +0200 | |
changeset 31992 | 0ac024e1b9cc |
parent 31990 | f94564a63a70 (current diff) |
parent 31991 | a7dd5bba0fd8 (diff) |
child 31993 | f4f6fec4906e |
--- a/hotspot/src/os/posix/vm/os_posix.cpp Sat Jul 25 00:36:45 2015 +0200 +++ b/hotspot/src/os/posix/vm/os_posix.cpp Sat Jul 25 02:22:32 2015 +0200 @@ -1079,7 +1079,7 @@ return ret == 0; } -bool PosixSemaphore::timedwait(const struct timespec ts) { +bool PosixSemaphore::timedwait(struct timespec ts) { while (true) { int result = sem_timedwait(&_semaphore, &ts); if (result == 0) {