# HG changeset patch # User jcoomes # Date 1301033173 25200 # Node ID 006b3750a4d439947e7c626ee21bfb5f5c8b4c64 # Parent 0e3ed5a14f73c83457a67ef7005994265e4cd505# Parent fc416c2556ec0ec581b82ed4ce6e58fc4b833bf5 Merge diff -r 0e3ed5a14f73 -r 006b3750a4d4 src/os/windows/vm/os_windows.cpp --- a/src/os/windows/vm/os_windows.cpp Thu Mar 24 23:04:36 2011 -0700 +++ b/src/os/windows/vm/os_windows.cpp Thu Mar 24 23:06:13 2011 -0700 @@ -3297,9 +3297,14 @@ "possibility of dangling Thread pointer"); OSThread* osthread = thread->osthread(); - bool interrupted; - interrupted = osthread->interrupted(); - if (clear_interrupted == true) { + bool interrupted = osthread->interrupted(); + // There is no synchronization between the setting of the interrupt + // and it being cleared here. It is critical - see 6535709 - that + // we only clear the interrupt state, and reset the interrupt event, + // if we are going to report that we were indeed interrupted - else + // an interrupt can be "lost", leading to spurious wakeups or lost wakeups + // depending on the timing + if (interrupted && clear_interrupted) { osthread->set_interrupted(false); ResetEvent(osthread->interrupt_event()); } // Otherwise leave the interrupted state alone diff -r 0e3ed5a14f73 -r 006b3750a4d4 src/share/vm/runtime/os.cpp --- a/src/share/vm/runtime/os.cpp Thu Mar 24 23:04:36 2011 -0700 +++ b/src/share/vm/runtime/os.cpp Thu Mar 24 23:06:13 2011 -0700 @@ -1079,11 +1079,6 @@ "%/lib/jsse.jar:" "%/lib/jce.jar:" "%/lib/charsets.jar:" - - // ## TEMPORARY hack to keep the legacy launcher working when - // ## only the boot module is installed (cf. j.l.ClassLoader) - "%/lib/modules/jdk.boot.jar:" - "%/classes"; char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep); if (sysclasspath == NULL) return false; diff -r 0e3ed5a14f73 -r 006b3750a4d4 src/share/vm/runtime/osThread.hpp --- a/src/share/vm/runtime/osThread.hpp Thu Mar 24 23:04:36 2011 -0700 +++ b/src/share/vm/runtime/osThread.hpp Thu Mar 24 23:06:13 2011 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -65,7 +65,7 @@ OSThreadStartFunc _start_proc; // Thread start routine void* _start_parm; // Thread start routine parameter volatile ThreadState _state; // Thread state *hint* - jint _interrupted; // Thread.isInterrupted state + volatile jint _interrupted; // Thread.isInterrupted state // Note: _interrupted must be jint, so that Java intrinsics can access it. // The value stored there must be either 0 or 1. It must be possible @@ -89,7 +89,7 @@ void* start_parm() const { return _start_parm; } void set_start_parm(void* start_parm) { _start_parm = start_parm; } - bool interrupted() const { return _interrupted != 0; } + volatile bool interrupted() const { return _interrupted != 0; } void set_interrupted(bool z) { _interrupted = z ? 1 : 0; } // Printing diff -r 0e3ed5a14f73 -r 006b3750a4d4 src/share/vm/runtime/vmStructs.cpp --- a/src/share/vm/runtime/vmStructs.cpp Thu Mar 24 23:04:36 2011 -0700 +++ b/src/share/vm/runtime/vmStructs.cpp Thu Mar 24 23:06:13 2011 -0700 @@ -840,7 +840,7 @@ /* OSThread */ \ /************/ \ \ - nonstatic_field(OSThread, _interrupted, jint) \ + volatile_nonstatic_field(OSThread, _interrupted, jint) \ \ /************************/ \ /* OopMap and OopMapSet */ \