annotate src/os/windows/vm/jvm_windows.cpp @ 14649:f6301b007a16

6498581: ThreadInterruptTest3 produces wrong output on Windows Summary: There is race condition between os::interrupt and os::is_interrupted on Windows. In JVM_Sleep(Thread.sleep), check if thread gets interrupted, it may see interrupted but not really interrupted so cause spurious waking up (early return from sleep). Fix by checking if interrupt event really gets set thus prevent false return. For intrinsic of _isInterrupted, on Windows, go fastpath only on bit not set. Reviewed-by: acorn, kvn Contributed-by: david.holmes@oracle.com, yumin.qi@oracle.com
author minqi
date Wed, 26 Feb 2014 15:20:41 -0800
parents f95d63e2154a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "prims/jvm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/osThread.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #include <signal.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 JVM_LEAF(void*, JVM_GetThreadInterruptEvent())
a61af66fc99e Initial load
duke
parents:
diff changeset
33 return Thread::current()->osthread()->interrupt_event();
a61af66fc99e Initial load
duke
parents:
diff changeset
34 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // sun.misc.Signal ///////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Signal code is mostly copied from classic vm, signals_md.c 1.4 98/08/23
a61af66fc99e Initial load
duke
parents:
diff changeset
38 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
39 * This function is included primarily as a debugging aid. If Java is
a61af66fc99e Initial load
duke
parents:
diff changeset
40 * running in a console window, then pressing <CTRL-BREAK> will cause
a61af66fc99e Initial load
duke
parents:
diff changeset
41 * the current state of all active threads and monitors to be written
a61af66fc99e Initial load
duke
parents:
diff changeset
42 * to the console window.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 */
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Copied from classic vm
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // signals_md.c 1.4 98/08/23
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void* newHandler = handler == (void *)2
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ? os::user_handler()
a61af66fc99e Initial load
duke
parents:
diff changeset
50 : handler;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 switch (sig) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 case SIGFPE:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 return (void *)-1; /* already used by VM */
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case SIGBREAK:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (!ReduceSignalUsage) return (void *)-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 /* The following signals are used for Shutdown Hooks support. However, if
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via
a61af66fc99e Initial load
duke
parents:
diff changeset
59 System.exit(), Java is not allowed to use these signals, and the the
a61af66fc99e Initial load
duke
parents:
diff changeset
60 user is allowed to set his own _native_ handler for these signals and
a61af66fc99e Initial load
duke
parents:
diff changeset
61 invoke System.exit() as needed. Terminator.setup() is avoiding
a61af66fc99e Initial load
duke
parents:
diff changeset
62 registration of these signals when -Xrs is present. */
a61af66fc99e Initial load
duke
parents:
diff changeset
63 case SHUTDOWN1_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 case SHUTDOWN2_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (ReduceSignalUsage) return (void*)-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void* oldHandler = os::signal(sig, newHandler);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (oldHandler == os::user_handler()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return (void *)2;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return oldHandler;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (ReduceSignalUsage) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,BREAK_SIGNAL
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // to be raised when ReduceSignalUsage is set, since no handler
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // for them is actually registered in JVM or via JVM_RegisterSignal.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
83 sig == SIGBREAK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 return JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 os::signal_raise(sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
93 All the defined signal names for Windows.
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 NOTE that not all of these names are accepted by FindSignal!
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 For various reasons some of these may be rejected at runtime.
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 Here are the names currently accepted by a user of sun.misc.Signal with
a61af66fc99e Initial load
duke
parents:
diff changeset
100 1.4.1 (ignoring potential interaction with use of chaining, etc):
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 (LIST TBD)
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 */
a61af66fc99e Initial load
duke
parents:
diff changeset
105 struct siglabel {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int number;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 };
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 struct siglabel siglabels[] =
a61af66fc99e Initial load
duke
parents:
diff changeset
111 /* derived from version 6.0 VC98/include/signal.h */
a61af66fc99e Initial load
duke
parents:
diff changeset
112 {"ABRT", SIGABRT, /* abnormal termination triggered by abort cl */
a61af66fc99e Initial load
duke
parents:
diff changeset
113 "FPE", SIGFPE, /* floating point exception */
a61af66fc99e Initial load
duke
parents:
diff changeset
114 "SEGV", SIGSEGV, /* segment violation */
a61af66fc99e Initial load
duke
parents:
diff changeset
115 "INT", SIGINT, /* interrupt */
a61af66fc99e Initial load
duke
parents:
diff changeset
116 "TERM", SIGTERM, /* software term signal from kill */
a61af66fc99e Initial load
duke
parents:
diff changeset
117 "BREAK", SIGBREAK, /* Ctrl-Break sequence */
a61af66fc99e Initial load
duke
parents:
diff changeset
118 "ILL", SIGILL}; /* illegal instruction */
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
a61af66fc99e Initial load
duke
parents:
diff changeset
121 /* find and return the named signal's number */
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 for(int i=0;i<sizeof(siglabels)/sizeof(struct siglabel);i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if(!strcmp(name, siglabels[i].name))
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return siglabels[i].number;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 JVM_END