OpenJDK / bsd-port / jdk9 / hotspot
changeset 8775:7c9cf9e1d3a3
Merge
author | kbarrett |
---|---|
date | Sat, 25 Jul 2015 02:22:32 +0200 |
parents | e5108bc443c5 eb2c5c42482f |
children | efbd746ff61e |
files | |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/os/posix/vm/os_posix.cpp Sat Jul 25 00:36:45 2015 +0200 +++ b/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) {