< prev index next >

src/hotspot/os/posix/os_posix.cpp

Print this page
rev 47862 : imported patch 10.07.open.rebase_20171110.dcubed

*** 476,487 **** //////////////////////////////////////////////////////////////////////////////// // interrupt support void os::interrupt(Thread* thread) { ! assert(Thread::current() == thread || Threads_lock->owned_by_self(), ! "possibility of dangling Thread pointer"); OSThread* osthread = thread->osthread(); if (!osthread->interrupted()) { osthread->set_interrupted(true); --- 476,486 ---- //////////////////////////////////////////////////////////////////////////////// // interrupt support void os::interrupt(Thread* thread) { ! debug_only(Thread::check_for_dangling_thread_pointer(thread);) OSThread* osthread = thread->osthread(); if (!osthread->interrupted()) { osthread->set_interrupted(true);
*** 497,512 **** if (thread->is_Java_thread()) ((JavaThread*)thread)->parker()->unpark(); ParkEvent * ev = thread->_ParkEvent ; if (ev != NULL) ev->unpark() ; - } bool os::is_interrupted(Thread* thread, bool clear_interrupted) { ! assert(Thread::current() == thread || Threads_lock->owned_by_self(), ! "possibility of dangling Thread pointer"); OSThread* osthread = thread->osthread(); bool interrupted = osthread->interrupted(); --- 496,509 ---- if (thread->is_Java_thread()) ((JavaThread*)thread)->parker()->unpark(); ParkEvent * ev = thread->_ParkEvent ; if (ev != NULL) ev->unpark() ; } bool os::is_interrupted(Thread* thread, bool clear_interrupted) { ! debug_only(Thread::check_for_dangling_thread_pointer(thread);) OSThread* osthread = thread->osthread(); bool interrupted = osthread->interrupted();
< prev index next >