Created
September 19, 2012 09:41
-
-
Save chids/3748732 to your computer and use it in GitHub Desktop.
jdk-7-b147-linux-os-sleep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int os::sleep(Thread* thread, jlong millis, bool interruptible) { | |
assert(thread == Thread::current(), "thread consistency check"); | |
ParkEvent * const slp = thread->_SleepEvent ; | |
slp->reset() ; | |
OrderAccess::fence() ; | |
if (interruptible) { | |
jlong prevtime = javaTimeNanos(); | |
for (;;) { | |
if (os::is_interrupted(thread, true)) { | |
return OS_INTRPT; | |
} | |
jlong newtime = javaTimeNanos(); | |
if (newtime - prevtime < 0) { | |
// time moving backwards, should only happen if no monotonic clock | |
// not a guarantee() because JVM should not abort on kernel/glibc bugs | |
assert(!Linux::supports_monotonic_clock(), "time moving backwards"); | |
} else { | |
millis -= (newtime - prevtime) / NANOSECS_PER_MILLISECS; | |
} | |
if(millis <= 0) { | |
return OS_OK; | |
} | |
prevtime = newtime; | |
{ | |
assert(thread->is_Java_thread(), "sanity check"); | |
JavaThread *jt = (JavaThread *) thread; | |
ThreadBlockInVM tbivm(jt); | |
OSThreadWaitState osts(jt->osthread(), false /* not Object.wait() */); | |
jt->set_suspend_equivalent(); | |
// cleared by handle_special_suspend_equivalent_condition() or | |
// java_suspend_self() via check_and_wait_while_suspended() | |
slp->park(millis); | |
// were we externally suspended while we were waiting? | |
jt->check_and_wait_while_suspended(); | |
} | |
} | |
} else { | |
OSThreadWaitState osts(thread->osthread(), false /* not Object.wait() */); | |
jlong prevtime = javaTimeNanos(); | |
for (;;) { | |
// It'd be nice to avoid the back-to-back javaTimeNanos() calls on | |
// the 1st iteration ... | |
jlong newtime = javaTimeNanos(); | |
if (newtime - prevtime < 0) { | |
// time moving backwards, should only happen if no monotonic clock | |
// not a guarantee() because JVM should not abort on kernel/glibc bugs | |
assert(!Linux::supports_monotonic_clock(), "time moving backwards"); | |
} else { | |
millis -= (newtime - prevtime) / NANOSECS_PER_MILLISECS; | |
} | |
if(millis <= 0) break ; | |
prevtime = newtime; | |
slp->park(millis); | |
} | |
return OS_OK ; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment