author | stuefe |
Tue, 21 Mar 2017 14:14:06 +0100 | |
changeset 46361 | b4c026dd6128 |
parent 46346 | 4085295dcf51 |
child 46451 | a4a8613c08e9 |
permissions | -rw-r--r-- |
8119 | 1 |
/* |
46331 | 2 |
* Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. |
22826 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
8119 | 24 |
|
22826 | 25 |
#include "utilities/globalDefinitions.hpp" |
8119 | 26 |
#include "prims/jvm.h" |
31610 | 27 |
#include "semaphore_posix.hpp" |
13195 | 28 |
#include "runtime/frame.inline.hpp" |
22891
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
29 |
#include "runtime/interfaceSupport.hpp" |
8119 | 30 |
#include "runtime/os.hpp" |
40010 | 31 |
#include "utilities/macros.hpp" |
8119 | 32 |
#include "utilities/vmError.hpp" |
33 |
||
22826 | 34 |
#include <signal.h> |
8119 | 35 |
#include <unistd.h> |
36 |
#include <sys/resource.h> |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
37 |
#include <sys/utsname.h> |
19691
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
38 |
#include <pthread.h> |
31610 | 39 |
#include <semaphore.h> |
19691
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
40 |
#include <signal.h> |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
41 |
|
22826 | 42 |
// Todo: provide a os::get_max_process_id() or similar. Number of processes |
43 |
// may have been configured, can be read more accurately from proc fs etc. |
|
44 |
#ifndef MAX_PID |
|
45 |
#define MAX_PID INT_MAX |
|
46 |
#endif |
|
47 |
#define IS_VALID_PID(p) (p > 0 && p < MAX_PID) |
|
8119 | 48 |
|
49 |
// Check core dump limit and report possible place where core can be found |
|
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
28172
diff
changeset
|
50 |
void os::check_dump_limit(char* buffer, size_t bufferSize) { |
38254 | 51 |
if (!FLAG_IS_DEFAULT(CreateCoredumpOnCrash) && !CreateCoredumpOnCrash) { |
52 |
jio_snprintf(buffer, bufferSize, "CreateCoredumpOnCrash is disabled from command line"); |
|
53 |
VMError::record_coredump_status(buffer, false); |
|
54 |
return; |
|
55 |
} |
|
56 |
||
13198
271c557a7623
7129724: MAC: Core file location is wrong in crash report
mikael
parents:
13195
diff
changeset
|
57 |
int n; |
8119 | 58 |
struct rlimit rlim; |
59 |
bool success; |
|
60 |
||
28172
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
61 |
char core_path[PATH_MAX]; |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
62 |
n = get_core_path(core_path, PATH_MAX); |
8119 | 63 |
|
28172
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
64 |
if (n <= 0) { |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
65 |
jio_snprintf(buffer, bufferSize, "core.%d (may not exist)", current_process_id()); |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
66 |
success = true; |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
67 |
#ifdef LINUX |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
68 |
} else if (core_path[0] == '"') { // redirect to user process |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
69 |
jio_snprintf(buffer, bufferSize, "Core dumps may be processed with %s", core_path); |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
70 |
success = true; |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
71 |
#endif |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
72 |
} else if (getrlimit(RLIMIT_CORE, &rlim) != 0) { |
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
73 |
jio_snprintf(buffer, bufferSize, "%s (may not exist)", core_path); |
8119 | 74 |
success = true; |
75 |
} else { |
|
76 |
switch(rlim.rlim_cur) { |
|
77 |
case RLIM_INFINITY: |
|
28172
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
78 |
jio_snprintf(buffer, bufferSize, "%s", core_path); |
8119 | 79 |
success = true; |
80 |
break; |
|
81 |
case 0: |
|
82 |
jio_snprintf(buffer, bufferSize, "Core dumps have been disabled. To enable core dumping, try \"ulimit -c unlimited\" before starting Java again"); |
|
83 |
success = false; |
|
84 |
break; |
|
85 |
default: |
|
28172
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
86 |
jio_snprintf(buffer, bufferSize, "%s (max size %lu kB). To ensure a full core dump, try \"ulimit -c unlimited\" before starting Java again", core_path, (unsigned long)(rlim.rlim_cur >> 10)); |
8119 | 87 |
success = true; |
88 |
break; |
|
89 |
} |
|
90 |
} |
|
28172
19ae5c844e75
8059586: hs_err report should treat redirected core pattern
dholmes
parents:
28166
diff
changeset
|
91 |
|
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
28172
diff
changeset
|
92 |
VMError::record_coredump_status(buffer, success); |
8119 | 93 |
} |
94 |
||
25946 | 95 |
int os::get_native_stack(address* stack, int frames, int toSkip) { |
96 |
int frame_idx = 0; |
|
97 |
int num_of_frames; // number of frames captured |
|
13195 | 98 |
frame fr = os::current_frame(); |
25946 | 99 |
while (fr.pc() && frame_idx < frames) { |
100 |
if (toSkip > 0) { |
|
101 |
toSkip --; |
|
102 |
} else { |
|
103 |
stack[frame_idx ++] = fr.pc(); |
|
104 |
} |
|
28166
e42212b64568
8066803: compiler/intrinsics/mathexact/SubExactINonConstantTest.java crashed in os::is_first_C_frame(frame*)
coleenp
parents:
27471
diff
changeset
|
105 |
if (fr.fp() == NULL || fr.cb() != NULL || |
e42212b64568
8066803: compiler/intrinsics/mathexact/SubExactINonConstantTest.java crashed in os::is_first_C_frame(frame*)
coleenp
parents:
27471
diff
changeset
|
106 |
fr.sender_pc() == NULL || os::is_first_C_frame(&fr)) break; |
25946 | 107 |
|
108 |
if (fr.sender_pc() && !os::is_first_C_frame(&fr)) { |
|
109 |
fr = os::get_sender_for_C_frame(&fr); |
|
110 |
} else { |
|
111 |
break; |
|
112 |
} |
|
13195 | 113 |
} |
25946 | 114 |
num_of_frames = frame_idx; |
115 |
for (; frame_idx < frames; frame_idx ++) { |
|
116 |
stack[frame_idx] = NULL; |
|
13195 | 117 |
} |
25946 | 118 |
|
119 |
return num_of_frames; |
|
120 |
} |
|
121 |
||
122 |
||
123 |
bool os::unsetenv(const char* name) { |
|
124 |
assert(name != NULL, "Null pointer"); |
|
125 |
return (::unsetenv(name) == 0); |
|
13195 | 126 |
} |
127 |
||
11418
66ca80da30e2
7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents:
8476
diff
changeset
|
128 |
int os::get_last_error() { |
66ca80da30e2
7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents:
8476
diff
changeset
|
129 |
return errno; |
66ca80da30e2
7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents:
8476
diff
changeset
|
130 |
} |
66ca80da30e2
7126185: Clean up lasterror handling, add os::get_last_error()
phh
parents:
8476
diff
changeset
|
131 |
|
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
132 |
bool os::is_debugger_attached() { |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
133 |
// not implemented |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
134 |
return false; |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
135 |
} |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
136 |
|
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
137 |
void os::wait_for_keypress_at_exit(void) { |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
138 |
// don't do anything on posix platforms |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
139 |
return; |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
140 |
} |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
141 |
|
14840
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
142 |
// Multiple threads can race in this code, and can remap over each other with MAP_FIXED, |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
143 |
// so on posix, unmap the section at the start and at the end of the chunk that we mapped |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
144 |
// rather than unmapping and remapping the whole chunk to get requested alignment. |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
145 |
char* os::reserve_memory_aligned(size_t size, size_t alignment) { |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
146 |
assert((alignment & (os::vm_allocation_granularity() - 1)) == 0, |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
147 |
"Alignment must be a multiple of allocation granularity (page size)"); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
148 |
assert((size & (alignment -1)) == 0, "size must be 'alignment' aligned"); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
149 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
150 |
size_t extra_size = size + alignment; |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
151 |
assert(extra_size >= size, "overflow, size is too large to allow alignment"); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
152 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
153 |
char* extra_base = os::reserve_memory(extra_size, NULL, alignment); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
154 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
155 |
if (extra_base == NULL) { |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
156 |
return NULL; |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
157 |
} |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
158 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
159 |
// Do manual alignment |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
160 |
char* aligned_base = (char*) align_size_up((uintptr_t) extra_base, alignment); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
161 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
162 |
// [ | | ] |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
163 |
// ^ extra_base |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
164 |
// ^ extra_base + begin_offset == aligned_base |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
165 |
// extra_base + begin_offset + size ^ |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
166 |
// extra_base + extra_size ^ |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
167 |
// |<>| == begin_offset |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
168 |
// end_offset == |<>| |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
169 |
size_t begin_offset = aligned_base - extra_base; |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
170 |
size_t end_offset = (extra_base + extra_size) - (aligned_base + size); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
171 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
172 |
if (begin_offset > 0) { |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
173 |
os::release_memory(extra_base, begin_offset); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
174 |
} |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
175 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
176 |
if (end_offset > 0) { |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
177 |
os::release_memory(extra_base + begin_offset + size, end_offset); |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
178 |
} |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
179 |
|
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
180 |
return aligned_base; |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
181 |
} |
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13963
diff
changeset
|
182 |
|
33766
3290cae587f9
8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
33148
diff
changeset
|
183 |
int os::log_vsnprintf(char* buf, size_t len, const char* fmt, va_list args) { |
3290cae587f9
8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
33148
diff
changeset
|
184 |
return vsnprintf(buf, len, fmt, args); |
3290cae587f9
8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
33148
diff
changeset
|
185 |
} |
3290cae587f9
8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
33148
diff
changeset
|
186 |
|
38065
025c784d9333
8154921: Fix aix after "8146879: Add option for handling existing log files in UL"
goetz
parents:
37465
diff
changeset
|
187 |
int os::get_fileno(FILE* fp) { |
025c784d9333
8154921: Fix aix after "8146879: Add option for handling existing log files in UL"
goetz
parents:
37465
diff
changeset
|
188 |
return NOT_AIX(::)fileno(fp); |
37465
1d5551f466ee
8146879: Add option for handling existing log files in UL
mlarsson
parents:
37113
diff
changeset
|
189 |
} |
1d5551f466ee
8146879: Add option for handling existing log files in UL
mlarsson
parents:
37113
diff
changeset
|
190 |
|
42066 | 191 |
struct tm* os::gmtime_pd(const time_t* clock, struct tm* res) { |
192 |
return gmtime_r(clock, res); |
|
193 |
} |
|
194 |
||
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
195 |
void os::Posix::print_load_average(outputStream* st) { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
196 |
st->print("load average:"); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
197 |
double loadavg[3]; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
198 |
os::loadavg(loadavg, 3); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
199 |
st->print("%0.02f %0.02f %0.02f", loadavg[0], loadavg[1], loadavg[2]); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
200 |
st->cr(); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
201 |
} |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
202 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
203 |
void os::Posix::print_rlimit_info(outputStream* st) { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
204 |
st->print("rlimit:"); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
205 |
struct rlimit rlim; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
206 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
207 |
st->print(" STACK "); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
208 |
getrlimit(RLIMIT_STACK, &rlim); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
209 |
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
210 |
else st->print("%luk", rlim.rlim_cur >> 10); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
211 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
212 |
st->print(", CORE "); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
213 |
getrlimit(RLIMIT_CORE, &rlim); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
214 |
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
215 |
else st->print("%luk", rlim.rlim_cur >> 10); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
216 |
|
22826 | 217 |
// Isn't there on solaris |
40010 | 218 |
#if !defined(SOLARIS) && !defined(AIX) |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
219 |
st->print(", NPROC "); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
220 |
getrlimit(RLIMIT_NPROC, &rlim); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
221 |
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
222 |
else st->print("%lu", rlim.rlim_cur); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
223 |
#endif |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
224 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
225 |
st->print(", NOFILE "); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
226 |
getrlimit(RLIMIT_NOFILE, &rlim); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
227 |
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
228 |
else st->print("%lu", rlim.rlim_cur); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
229 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
230 |
st->print(", AS "); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
231 |
getrlimit(RLIMIT_AS, &rlim); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
232 |
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
233 |
else st->print("%luk", rlim.rlim_cur >> 10); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
234 |
st->cr(); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
235 |
} |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
236 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
237 |
void os::Posix::print_uname_info(outputStream* st) { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
238 |
// kernel |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
239 |
st->print("uname:"); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
240 |
struct utsname name; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
241 |
uname(&name); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
242 |
st->print("%s ", name.sysname); |
26569
5fcbc13c071c
8056930: Output host info under some condition for core dump
minqi
parents:
25946
diff
changeset
|
243 |
#ifdef ASSERT |
5fcbc13c071c
8056930: Output host info under some condition for core dump
minqi
parents:
25946
diff
changeset
|
244 |
st->print("%s ", name.nodename); |
5fcbc13c071c
8056930: Output host info under some condition for core dump
minqi
parents:
25946
diff
changeset
|
245 |
#endif |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
246 |
st->print("%s ", name.release); |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
247 |
st->print("%s ", name.version); |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
248 |
st->print("%s", name.machine); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
249 |
st->cr(); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
250 |
} |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
251 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
252 |
bool os::get_host_name(char* buf, size_t buflen) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
253 |
struct utsname name; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
254 |
uname(&name); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
255 |
jio_snprintf(buf, buflen, "%s", name.nodename); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
256 |
return true; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
257 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31610
diff
changeset
|
258 |
|
16605
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
259 |
bool os::has_allocatable_memory_limit(julong* limit) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
260 |
struct rlimit rlim; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
261 |
int getrlimit_res = getrlimit(RLIMIT_AS, &rlim); |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
262 |
// if there was an error when calling getrlimit, assume that there is no limitation |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
263 |
// on virtual memory. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
264 |
bool result; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
265 |
if ((getrlimit_res != 0) || (rlim.rlim_cur == RLIM_INFINITY)) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
266 |
result = false; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
267 |
} else { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
268 |
*limit = (julong)rlim.rlim_cur; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
269 |
result = true; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
270 |
} |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
271 |
#ifdef _LP64 |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
272 |
return result; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
273 |
#else |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
274 |
// arbitrary virtual space limit for 32 bit Unices found by testing. If |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
275 |
// getrlimit above returned a limit, bound it with this limit. Otherwise |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
276 |
// directly use it. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
277 |
const julong max_virtual_limit = (julong)3800*M; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
278 |
if (result) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
279 |
*limit = MIN2(*limit, max_virtual_limit); |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
280 |
} else { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
281 |
*limit = max_virtual_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
282 |
} |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
11418
diff
changeset
|
283 |
|
16605
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
284 |
// bound by actually allocatable memory. The algorithm uses two bounds, an |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
285 |
// upper and a lower limit. The upper limit is the current highest amount of |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
286 |
// memory that could not be allocated, the lower limit is the current highest |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
287 |
// amount of memory that could be allocated. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
288 |
// The algorithm iteratively refines the result by halving the difference |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
289 |
// between these limits, updating either the upper limit (if that value could |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
290 |
// not be allocated) or the lower limit (if the that value could be allocated) |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
291 |
// until the difference between these limits is "small". |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
292 |
|
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
293 |
// the minimum amount of memory we care about allocating. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
294 |
const julong min_allocation_size = M; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
295 |
|
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
296 |
julong upper_limit = *limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
297 |
|
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
298 |
// first check a few trivial cases |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
299 |
if (is_allocatable(upper_limit) || (upper_limit <= min_allocation_size)) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
300 |
*limit = upper_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
301 |
} else if (!is_allocatable(min_allocation_size)) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
302 |
// we found that not even min_allocation_size is allocatable. Return it |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
303 |
// anyway. There is no point to search for a better value any more. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
304 |
*limit = min_allocation_size; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
305 |
} else { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
306 |
// perform the binary search. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
307 |
julong lower_limit = min_allocation_size; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
308 |
while ((upper_limit - lower_limit) > min_allocation_size) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
309 |
julong temp_limit = ((upper_limit - lower_limit) / 2) + lower_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
310 |
temp_limit = align_size_down_(temp_limit, min_allocation_size); |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
311 |
if (is_allocatable(temp_limit)) { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
312 |
lower_limit = temp_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
313 |
} else { |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
314 |
upper_limit = temp_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
315 |
} |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
316 |
} |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
317 |
*limit = lower_limit; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
318 |
} |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
319 |
return true; |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
320 |
#endif |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
14840
diff
changeset
|
321 |
} |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
322 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
323 |
const char* os::get_current_directory(char *buf, size_t buflen) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
324 |
return getcwd(buf, buflen); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
325 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
326 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
327 |
FILE* os::open(int fd, const char* mode) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
328 |
return ::fdopen(fd, mode); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16605
diff
changeset
|
329 |
} |
18943 | 330 |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
331 |
void os::flockfile(FILE* fp) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
332 |
::flockfile(fp); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
333 |
} |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
334 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
335 |
void os::funlockfile(FILE* fp) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
336 |
::funlockfile(fp); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
337 |
} |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
38254
diff
changeset
|
338 |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
339 |
// Builds a platform dependent Agent_OnLoad_<lib_name> function name |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
340 |
// which is used to find statically linked in agents. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
341 |
// Parameters: |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
342 |
// sym_name: Symbol in library we are looking for |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
343 |
// lib_name: Name of library to look in, NULL for shared libs. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
344 |
// is_absolute_path == true if lib_name is absolute path to agent |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
345 |
// such as "/a/b/libL.so" |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
346 |
// == false if only the base name of the library is passed in |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
347 |
// such as "L" |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
348 |
char* os::build_agent_function_name(const char *sym_name, const char *lib_name, |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
349 |
bool is_absolute_path) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
350 |
char *agent_entry_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
351 |
size_t len; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
352 |
size_t name_len; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
353 |
size_t prefix_len = strlen(JNI_LIB_PREFIX); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
354 |
size_t suffix_len = strlen(JNI_LIB_SUFFIX); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
355 |
const char *start; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
356 |
|
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
357 |
if (lib_name != NULL) { |
36585
00416e804a66
8147456: Parsing of argument for -agentpath can write outside of allocated memory
dsamersoff
parents:
36355
diff
changeset
|
358 |
name_len = strlen(lib_name); |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
359 |
if (is_absolute_path) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
360 |
// Need to strip path, prefix and suffix |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
361 |
if ((start = strrchr(lib_name, *os::file_separator())) != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
362 |
lib_name = ++start; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
363 |
} |
36585
00416e804a66
8147456: Parsing of argument for -agentpath can write outside of allocated memory
dsamersoff
parents:
36355
diff
changeset
|
364 |
if (strlen(lib_name) <= (prefix_len + suffix_len)) { |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
365 |
return NULL; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
366 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
367 |
lib_name += prefix_len; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
368 |
name_len = strlen(lib_name) - suffix_len; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
369 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
370 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
371 |
len = (lib_name != NULL ? name_len : 0) + strlen(sym_name) + 2; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
372 |
agent_entry_name = NEW_C_HEAP_ARRAY_RETURN_NULL(char, len, mtThread); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
373 |
if (agent_entry_name == NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
374 |
return NULL; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
375 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
376 |
strcpy(agent_entry_name, sym_name); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
377 |
if (lib_name != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
378 |
strcat(agent_entry_name, "_"); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
379 |
strncat(agent_entry_name, lib_name, name_len); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
380 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
381 |
return agent_entry_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
382 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
383 |
|
22891
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
384 |
int os::sleep(Thread* thread, jlong millis, bool interruptible) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
385 |
assert(thread == Thread::current(), "thread consistency check"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
386 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
387 |
ParkEvent * const slp = thread->_SleepEvent ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
388 |
slp->reset() ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
389 |
OrderAccess::fence() ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
390 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
391 |
if (interruptible) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
392 |
jlong prevtime = javaTimeNanos(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
393 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
394 |
for (;;) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
395 |
if (os::is_interrupted(thread, true)) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
396 |
return OS_INTRPT; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
397 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
398 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
399 |
jlong newtime = javaTimeNanos(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
400 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
401 |
if (newtime - prevtime < 0) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
402 |
// time moving backwards, should only happen if no monotonic clock |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
403 |
// not a guarantee() because JVM should not abort on kernel/glibc bugs |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
404 |
assert(!os::supports_monotonic_clock(), "unexpected time moving backwards detected in os::sleep(interruptible)"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
405 |
} else { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
406 |
millis -= (newtime - prevtime) / NANOSECS_PER_MILLISEC; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
407 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
408 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
409 |
if (millis <= 0) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
410 |
return OS_OK; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
411 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
412 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
413 |
prevtime = newtime; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
414 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
415 |
{ |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
416 |
assert(thread->is_Java_thread(), "sanity check"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
417 |
JavaThread *jt = (JavaThread *) thread; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
418 |
ThreadBlockInVM tbivm(jt); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
419 |
OSThreadWaitState osts(jt->osthread(), false /* not Object.wait() */); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
420 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
421 |
jt->set_suspend_equivalent(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
422 |
// cleared by handle_special_suspend_equivalent_condition() or |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
423 |
// java_suspend_self() via check_and_wait_while_suspended() |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
424 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
425 |
slp->park(millis); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
426 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
427 |
// were we externally suspended while we were waiting? |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
428 |
jt->check_and_wait_while_suspended(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
429 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
430 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
431 |
} else { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
432 |
OSThreadWaitState osts(thread->osthread(), false /* not Object.wait() */); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
433 |
jlong prevtime = javaTimeNanos(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
434 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
435 |
for (;;) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
436 |
// It'd be nice to avoid the back-to-back javaTimeNanos() calls on |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
437 |
// the 1st iteration ... |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
438 |
jlong newtime = javaTimeNanos(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
439 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
440 |
if (newtime - prevtime < 0) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
441 |
// time moving backwards, should only happen if no monotonic clock |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
442 |
// not a guarantee() because JVM should not abort on kernel/glibc bugs |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
443 |
assert(!os::supports_monotonic_clock(), "unexpected time moving backwards detected on os::sleep(!interruptible)"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
444 |
} else { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
445 |
millis -= (newtime - prevtime) / NANOSECS_PER_MILLISEC; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
446 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
447 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
448 |
if (millis <= 0) break ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
449 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
450 |
prevtime = newtime; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
451 |
slp->park(millis); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
452 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
453 |
return OS_OK ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
454 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
455 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
456 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
457 |
//////////////////////////////////////////////////////////////////////////////// |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
458 |
// interrupt support |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
459 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
460 |
void os::interrupt(Thread* thread) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
461 |
assert(Thread::current() == thread || Threads_lock->owned_by_self(), |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
462 |
"possibility of dangling Thread pointer"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
463 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
464 |
OSThread* osthread = thread->osthread(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
465 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
466 |
if (!osthread->interrupted()) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
467 |
osthread->set_interrupted(true); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
468 |
// More than one thread can get here with the same value of osthread, |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
469 |
// resulting in multiple notifications. We do, however, want the store |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
470 |
// to interrupted() to be visible to other threads before we execute unpark(). |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
471 |
OrderAccess::fence(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
472 |
ParkEvent * const slp = thread->_SleepEvent ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
473 |
if (slp != NULL) slp->unpark() ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
474 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
475 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
476 |
// For JSR166. Unpark even if interrupt status already was set |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
477 |
if (thread->is_Java_thread()) |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
478 |
((JavaThread*)thread)->parker()->unpark(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
479 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
480 |
ParkEvent * ev = thread->_ParkEvent ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
481 |
if (ev != NULL) ev->unpark() ; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
482 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
483 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
484 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
485 |
bool os::is_interrupted(Thread* thread, bool clear_interrupted) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
486 |
assert(Thread::current() == thread || Threads_lock->owned_by_self(), |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
487 |
"possibility of dangling Thread pointer"); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
488 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
489 |
OSThread* osthread = thread->osthread(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
490 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
491 |
bool interrupted = osthread->interrupted(); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
492 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
493 |
// NOTE that since there is no "lock" around the interrupt and |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
494 |
// is_interrupted operations, there is the possibility that the |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
495 |
// interrupted flag (in osThread) will be "false" but that the |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
496 |
// low-level events will be in the signaled state. This is |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
497 |
// intentional. The effect of this is that Object.wait() and |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
498 |
// LockSupport.park() will appear to have a spurious wakeup, which |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
499 |
// is allowed and not harmful, and the possibility is so rare that |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
500 |
// it is not worth the added complexity to add yet another lock. |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
501 |
// For the sleep event an explicit reset is performed on entry |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
502 |
// to os::sleep, so there is no early return. It has also been |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
503 |
// recommended not to put the interrupted flag into the "event" |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
504 |
// structure because it hides the issue. |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
505 |
if (interrupted && clear_interrupted) { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
506 |
osthread->set_interrupted(false); |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
507 |
// consider thread->_SleepEvent->reset() ... optional optimization |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
508 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
509 |
|
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
510 |
return interrupted; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
511 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
22528
diff
changeset
|
512 |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
513 |
|
22826 | 514 |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
515 |
static const struct { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
516 |
int sig; const char* name; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
517 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
518 |
g_signal_info[] = |
22826 | 519 |
{ |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
520 |
{ SIGABRT, "SIGABRT" }, |
22826 | 521 |
#ifdef SIGAIO |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
522 |
{ SIGAIO, "SIGAIO" }, |
22826 | 523 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
524 |
{ SIGALRM, "SIGALRM" }, |
22826 | 525 |
#ifdef SIGALRM1 |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
526 |
{ SIGALRM1, "SIGALRM1" }, |
22826 | 527 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
528 |
{ SIGBUS, "SIGBUS" }, |
22826 | 529 |
#ifdef SIGCANCEL |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
530 |
{ SIGCANCEL, "SIGCANCEL" }, |
22826 | 531 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
532 |
{ SIGCHLD, "SIGCHLD" }, |
22826 | 533 |
#ifdef SIGCLD |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
534 |
{ SIGCLD, "SIGCLD" }, |
22826 | 535 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
536 |
{ SIGCONT, "SIGCONT" }, |
22826 | 537 |
#ifdef SIGCPUFAIL |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
538 |
{ SIGCPUFAIL, "SIGCPUFAIL" }, |
22826 | 539 |
#endif |
540 |
#ifdef SIGDANGER |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
541 |
{ SIGDANGER, "SIGDANGER" }, |
22826 | 542 |
#endif |
543 |
#ifdef SIGDIL |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
544 |
{ SIGDIL, "SIGDIL" }, |
22826 | 545 |
#endif |
546 |
#ifdef SIGEMT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
547 |
{ SIGEMT, "SIGEMT" }, |
22826 | 548 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
549 |
{ SIGFPE, "SIGFPE" }, |
22826 | 550 |
#ifdef SIGFREEZE |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
551 |
{ SIGFREEZE, "SIGFREEZE" }, |
22826 | 552 |
#endif |
553 |
#ifdef SIGGFAULT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
554 |
{ SIGGFAULT, "SIGGFAULT" }, |
22826 | 555 |
#endif |
556 |
#ifdef SIGGRANT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
557 |
{ SIGGRANT, "SIGGRANT" }, |
22826 | 558 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
559 |
{ SIGHUP, "SIGHUP" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
560 |
{ SIGILL, "SIGILL" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
561 |
{ SIGINT, "SIGINT" }, |
22826 | 562 |
#ifdef SIGIO |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
563 |
{ SIGIO, "SIGIO" }, |
22826 | 564 |
#endif |
565 |
#ifdef SIGIOINT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
566 |
{ SIGIOINT, "SIGIOINT" }, |
22826 | 567 |
#endif |
568 |
#ifdef SIGIOT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
569 |
// SIGIOT is there for BSD compatibility, but on most Unices just a |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
570 |
// synonym for SIGABRT. The result should be "SIGABRT", not |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
571 |
// "SIGIOT". |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
572 |
#if (SIGIOT != SIGABRT ) |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
573 |
{ SIGIOT, "SIGIOT" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
574 |
#endif |
22826 | 575 |
#endif |
576 |
#ifdef SIGKAP |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
577 |
{ SIGKAP, "SIGKAP" }, |
22826 | 578 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
579 |
{ SIGKILL, "SIGKILL" }, |
22826 | 580 |
#ifdef SIGLOST |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
581 |
{ SIGLOST, "SIGLOST" }, |
22826 | 582 |
#endif |
583 |
#ifdef SIGLWP |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
584 |
{ SIGLWP, "SIGLWP" }, |
22826 | 585 |
#endif |
586 |
#ifdef SIGLWPTIMER |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
587 |
{ SIGLWPTIMER, "SIGLWPTIMER" }, |
22826 | 588 |
#endif |
589 |
#ifdef SIGMIGRATE |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
590 |
{ SIGMIGRATE, "SIGMIGRATE" }, |
22826 | 591 |
#endif |
592 |
#ifdef SIGMSG |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
593 |
{ SIGMSG, "SIGMSG" }, |
22826 | 594 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
595 |
{ SIGPIPE, "SIGPIPE" }, |
22826 | 596 |
#ifdef SIGPOLL |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
597 |
{ SIGPOLL, "SIGPOLL" }, |
22826 | 598 |
#endif |
599 |
#ifdef SIGPRE |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
600 |
{ SIGPRE, "SIGPRE" }, |
22826 | 601 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
602 |
{ SIGPROF, "SIGPROF" }, |
22826 | 603 |
#ifdef SIGPTY |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
604 |
{ SIGPTY, "SIGPTY" }, |
22826 | 605 |
#endif |
606 |
#ifdef SIGPWR |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
607 |
{ SIGPWR, "SIGPWR" }, |
22826 | 608 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
609 |
{ SIGQUIT, "SIGQUIT" }, |
22826 | 610 |
#ifdef SIGRECONFIG |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
611 |
{ SIGRECONFIG, "SIGRECONFIG" }, |
22826 | 612 |
#endif |
613 |
#ifdef SIGRECOVERY |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
614 |
{ SIGRECOVERY, "SIGRECOVERY" }, |
22826 | 615 |
#endif |
616 |
#ifdef SIGRESERVE |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
617 |
{ SIGRESERVE, "SIGRESERVE" }, |
22826 | 618 |
#endif |
619 |
#ifdef SIGRETRACT |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
620 |
{ SIGRETRACT, "SIGRETRACT" }, |
22826 | 621 |
#endif |
622 |
#ifdef SIGSAK |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
623 |
{ SIGSAK, "SIGSAK" }, |
22826 | 624 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
625 |
{ SIGSEGV, "SIGSEGV" }, |
22826 | 626 |
#ifdef SIGSOUND |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
627 |
{ SIGSOUND, "SIGSOUND" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
628 |
#endif |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
629 |
#ifdef SIGSTKFLT |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
630 |
{ SIGSTKFLT, "SIGSTKFLT" }, |
22826 | 631 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
632 |
{ SIGSTOP, "SIGSTOP" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
633 |
{ SIGSYS, "SIGSYS" }, |
22826 | 634 |
#ifdef SIGSYSERROR |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
635 |
{ SIGSYSERROR, "SIGSYSERROR" }, |
22826 | 636 |
#endif |
637 |
#ifdef SIGTALRM |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
638 |
{ SIGTALRM, "SIGTALRM" }, |
22826 | 639 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
640 |
{ SIGTERM, "SIGTERM" }, |
22826 | 641 |
#ifdef SIGTHAW |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
642 |
{ SIGTHAW, "SIGTHAW" }, |
22826 | 643 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
644 |
{ SIGTRAP, "SIGTRAP" }, |
22826 | 645 |
#ifdef SIGTSTP |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
646 |
{ SIGTSTP, "SIGTSTP" }, |
22826 | 647 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
648 |
{ SIGTTIN, "SIGTTIN" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
649 |
{ SIGTTOU, "SIGTTOU" }, |
22826 | 650 |
#ifdef SIGURG |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
651 |
{ SIGURG, "SIGURG" }, |
22826 | 652 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
653 |
{ SIGUSR1, "SIGUSR1" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
654 |
{ SIGUSR2, "SIGUSR2" }, |
22826 | 655 |
#ifdef SIGVIRT |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
656 |
{ SIGVIRT, "SIGVIRT" }, |
22826 | 657 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
658 |
{ SIGVTALRM, "SIGVTALRM" }, |
22826 | 659 |
#ifdef SIGWAITING |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
660 |
{ SIGWAITING, "SIGWAITING" }, |
22826 | 661 |
#endif |
662 |
#ifdef SIGWINCH |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
663 |
{ SIGWINCH, "SIGWINCH" }, |
22826 | 664 |
#endif |
665 |
#ifdef SIGWINDOW |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
666 |
{ SIGWINDOW, "SIGWINDOW" }, |
22826 | 667 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
668 |
{ SIGXCPU, "SIGXCPU" }, |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
669 |
{ SIGXFSZ, "SIGXFSZ" }, |
22826 | 670 |
#ifdef SIGXRES |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
671 |
{ SIGXRES, "SIGXRES" }, |
22826 | 672 |
#endif |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
673 |
{ -1, NULL } |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
674 |
}; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
675 |
|
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
676 |
// Returned string is a constant. For unknown signals "UNKNOWN" is returned. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
677 |
const char* os::Posix::get_signal_name(int sig, char* out, size_t outlen) { |
22826 | 678 |
|
679 |
const char* ret = NULL; |
|
680 |
||
681 |
#ifdef SIGRTMIN |
|
682 |
if (sig >= SIGRTMIN && sig <= SIGRTMAX) { |
|
683 |
if (sig == SIGRTMIN) { |
|
684 |
ret = "SIGRTMIN"; |
|
685 |
} else if (sig == SIGRTMAX) { |
|
686 |
ret = "SIGRTMAX"; |
|
687 |
} else { |
|
688 |
jio_snprintf(out, outlen, "SIGRTMIN+%d", sig - SIGRTMIN); |
|
689 |
return out; |
|
690 |
} |
|
691 |
} |
|
692 |
#endif |
|
693 |
||
694 |
if (sig > 0) { |
|
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
695 |
for (int idx = 0; g_signal_info[idx].sig != -1; idx ++) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
696 |
if (g_signal_info[idx].sig == sig) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
697 |
ret = g_signal_info[idx].name; |
22826 | 698 |
break; |
699 |
} |
|
700 |
} |
|
701 |
} |
|
702 |
||
703 |
if (!ret) { |
|
704 |
if (!is_valid_signal(sig)) { |
|
705 |
ret = "INVALID"; |
|
706 |
} else { |
|
707 |
ret = "UNKNOWN"; |
|
708 |
} |
|
709 |
} |
|
710 |
||
27471 | 711 |
if (out && outlen > 0) { |
712 |
strncpy(out, ret, outlen); |
|
713 |
out[outlen - 1] = '\0'; |
|
714 |
} |
|
22826 | 715 |
return out; |
716 |
} |
|
717 |
||
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
718 |
int os::Posix::get_signal_number(const char* signal_name) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
719 |
char tmp[30]; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
720 |
const char* s = signal_name; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
721 |
if (s[0] != 'S' || s[1] != 'I' || s[2] != 'G') { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
722 |
jio_snprintf(tmp, sizeof(tmp), "SIG%s", signal_name); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
723 |
s = tmp; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
724 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
725 |
for (int idx = 0; g_signal_info[idx].sig != -1; idx ++) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
726 |
if (strcmp(g_signal_info[idx].name, s) == 0) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
727 |
return g_signal_info[idx].sig; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
728 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
729 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
730 |
return -1; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
731 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
732 |
|
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
733 |
int os::get_signal_number(const char* signal_name) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
734 |
return os::Posix::get_signal_number(signal_name); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
735 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
736 |
|
22826 | 737 |
// Returns true if signal number is valid. |
738 |
bool os::Posix::is_valid_signal(int sig) { |
|
739 |
// MacOS not really POSIX compliant: sigaddset does not return |
|
740 |
// an error for invalid signal numbers. However, MacOS does not |
|
741 |
// support real time signals and simply seems to have just 33 |
|
742 |
// signals with no holes in the signal range. |
|
743 |
#ifdef __APPLE__ |
|
744 |
return sig >= 1 && sig < NSIG; |
|
745 |
#else |
|
746 |
// Use sigaddset to check for signal validity. |
|
747 |
sigset_t set; |
|
748 |
if (sigaddset(&set, sig) == -1 && errno == EINVAL) { |
|
749 |
return false; |
|
750 |
} |
|
751 |
return true; |
|
752 |
#endif |
|
753 |
} |
|
754 |
||
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
755 |
// Returns: |
35047
b1f924d2efe8
8145073: Filename and linenumber are not printed for asserts any more.
david
parents:
34621
diff
changeset
|
756 |
// NULL for an invalid signal number |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
757 |
// "SIG<num>" for a valid but unknown signal number |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
758 |
// signal name otherwise. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
759 |
const char* os::exception_name(int sig, char* buf, size_t size) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
760 |
if (!os::Posix::is_valid_signal(sig)) { |
35047
b1f924d2efe8
8145073: Filename and linenumber are not printed for asserts any more.
david
parents:
34621
diff
changeset
|
761 |
return NULL; |
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
762 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
763 |
const char* const name = os::Posix::get_signal_name(sig, buf, size); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
764 |
if (strcmp(name, "UNKNOWN") == 0) { |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
765 |
jio_snprintf(buf, size, "SIG%d", sig); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
766 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
767 |
return buf; |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
768 |
} |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
769 |
|
22826 | 770 |
#define NUM_IMPORTANT_SIGS 32 |
771 |
// Returns one-line short description of a signal set in a user provided buffer. |
|
772 |
const char* os::Posix::describe_signal_set_short(const sigset_t* set, char* buffer, size_t buf_size) { |
|
22827 | 773 |
assert(buf_size == (NUM_IMPORTANT_SIGS + 1), "wrong buffer size"); |
22826 | 774 |
// Note: for shortness, just print out the first 32. That should |
775 |
// cover most of the useful ones, apart from realtime signals. |
|
776 |
for (int sig = 1; sig <= NUM_IMPORTANT_SIGS; sig++) { |
|
777 |
const int rc = sigismember(set, sig); |
|
778 |
if (rc == -1 && errno == EINVAL) { |
|
779 |
buffer[sig-1] = '?'; |
|
780 |
} else { |
|
781 |
buffer[sig-1] = rc == 0 ? '0' : '1'; |
|
782 |
} |
|
783 |
} |
|
784 |
buffer[NUM_IMPORTANT_SIGS] = 0; |
|
785 |
return buffer; |
|
786 |
} |
|
787 |
||
788 |
// Prints one-line description of a signal set. |
|
789 |
void os::Posix::print_signal_set_short(outputStream* st, const sigset_t* set) { |
|
790 |
char buf[NUM_IMPORTANT_SIGS + 1]; |
|
791 |
os::Posix::describe_signal_set_short(set, buf, sizeof(buf)); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
792 |
st->print("%s", buf); |
22826 | 793 |
} |
794 |
||
795 |
// Writes one-line description of a combination of sigaction.sa_flags into a user |
|
796 |
// provided buffer. Returns that buffer. |
|
797 |
const char* os::Posix::describe_sa_flags(int flags, char* buffer, size_t size) { |
|
798 |
char* p = buffer; |
|
799 |
size_t remaining = size; |
|
800 |
bool first = true; |
|
801 |
int idx = 0; |
|
802 |
||
803 |
assert(buffer, "invalid argument"); |
|
804 |
||
805 |
if (size == 0) { |
|
806 |
return buffer; |
|
807 |
} |
|
808 |
||
809 |
strncpy(buffer, "none", size); |
|
810 |
||
811 |
const struct { |
|
35155 | 812 |
// NB: i is an unsigned int here because SA_RESETHAND is on some |
813 |
// systems 0x80000000, which is implicitly unsigned. Assignining |
|
814 |
// it to an int field would be an overflow in unsigned-to-signed |
|
815 |
// conversion. |
|
816 |
unsigned int i; |
|
22826 | 817 |
const char* s; |
818 |
} flaginfo [] = { |
|
819 |
{ SA_NOCLDSTOP, "SA_NOCLDSTOP" }, |
|
820 |
{ SA_ONSTACK, "SA_ONSTACK" }, |
|
821 |
{ SA_RESETHAND, "SA_RESETHAND" }, |
|
822 |
{ SA_RESTART, "SA_RESTART" }, |
|
823 |
{ SA_SIGINFO, "SA_SIGINFO" }, |
|
824 |
{ SA_NOCLDWAIT, "SA_NOCLDWAIT" }, |
|
825 |
{ SA_NODEFER, "SA_NODEFER" }, |
|
826 |
#ifdef AIX |
|
827 |
{ SA_ONSTACK, "SA_ONSTACK" }, |
|
828 |
{ SA_OLDSTYLE, "SA_OLDSTYLE" }, |
|
829 |
#endif |
|
830 |
{ 0, NULL } |
|
831 |
}; |
|
832 |
||
833 |
for (idx = 0; flaginfo[idx].s && remaining > 1; idx++) { |
|
834 |
if (flags & flaginfo[idx].i) { |
|
835 |
if (first) { |
|
836 |
jio_snprintf(p, remaining, "%s", flaginfo[idx].s); |
|
837 |
first = false; |
|
838 |
} else { |
|
839 |
jio_snprintf(p, remaining, "|%s", flaginfo[idx].s); |
|
840 |
} |
|
841 |
const size_t len = strlen(p); |
|
842 |
p += len; |
|
843 |
remaining -= len; |
|
844 |
} |
|
845 |
} |
|
846 |
||
847 |
buffer[size - 1] = '\0'; |
|
848 |
||
849 |
return buffer; |
|
850 |
} |
|
851 |
||
852 |
// Prints one-line description of a combination of sigaction.sa_flags. |
|
853 |
void os::Posix::print_sa_flags(outputStream* st, int flags) { |
|
854 |
char buffer[0x100]; |
|
855 |
os::Posix::describe_sa_flags(flags, buffer, sizeof(buffer)); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22894
diff
changeset
|
856 |
st->print("%s", buffer); |
22826 | 857 |
} |
858 |
||
859 |
// Helper function for os::Posix::print_siginfo_...(): |
|
860 |
// return a textual description for signal code. |
|
861 |
struct enum_sigcode_desc_t { |
|
862 |
const char* s_name; |
|
863 |
const char* s_desc; |
|
864 |
}; |
|
865 |
||
866 |
static bool get_signal_code_description(const siginfo_t* si, enum_sigcode_desc_t* out) { |
|
867 |
||
868 |
const struct { |
|
869 |
int sig; int code; const char* s_code; const char* s_desc; |
|
870 |
} t1 [] = { |
|
871 |
{ SIGILL, ILL_ILLOPC, "ILL_ILLOPC", "Illegal opcode." }, |
|
872 |
{ SIGILL, ILL_ILLOPN, "ILL_ILLOPN", "Illegal operand." }, |
|
873 |
{ SIGILL, ILL_ILLADR, "ILL_ILLADR", "Illegal addressing mode." }, |
|
874 |
{ SIGILL, ILL_ILLTRP, "ILL_ILLTRP", "Illegal trap." }, |
|
875 |
{ SIGILL, ILL_PRVOPC, "ILL_PRVOPC", "Privileged opcode." }, |
|
876 |
{ SIGILL, ILL_PRVREG, "ILL_PRVREG", "Privileged register." }, |
|
877 |
{ SIGILL, ILL_COPROC, "ILL_COPROC", "Coprocessor error." }, |
|
878 |
{ SIGILL, ILL_BADSTK, "ILL_BADSTK", "Internal stack error." }, |
|
879 |
#if defined(IA64) && defined(LINUX) |
|
880 |
{ SIGILL, ILL_BADIADDR, "ILL_BADIADDR", "Unimplemented instruction address" }, |
|
881 |
{ SIGILL, ILL_BREAK, "ILL_BREAK", "Application Break instruction" }, |
|
882 |
#endif |
|
883 |
{ SIGFPE, FPE_INTDIV, "FPE_INTDIV", "Integer divide by zero." }, |
|
884 |
{ SIGFPE, FPE_INTOVF, "FPE_INTOVF", "Integer overflow." }, |
|
885 |
{ SIGFPE, FPE_FLTDIV, "FPE_FLTDIV", "Floating-point divide by zero." }, |
|
886 |
{ SIGFPE, FPE_FLTOVF, "FPE_FLTOVF", "Floating-point overflow." }, |
|
887 |
{ SIGFPE, FPE_FLTUND, "FPE_FLTUND", "Floating-point underflow." }, |
|
888 |
{ SIGFPE, FPE_FLTRES, "FPE_FLTRES", "Floating-point inexact result." }, |
|
889 |
{ SIGFPE, FPE_FLTINV, "FPE_FLTINV", "Invalid floating-point operation." }, |
|
890 |
{ SIGFPE, FPE_FLTSUB, "FPE_FLTSUB", "Subscript out of range." }, |
|
891 |
{ SIGSEGV, SEGV_MAPERR, "SEGV_MAPERR", "Address not mapped to object." }, |
|
892 |
{ SIGSEGV, SEGV_ACCERR, "SEGV_ACCERR", "Invalid permissions for mapped object." }, |
|
893 |
#ifdef AIX |
|
894 |
// no explanation found what keyerr would be |
|
895 |
{ SIGSEGV, SEGV_KEYERR, "SEGV_KEYERR", "key error" }, |
|
896 |
#endif |
|
897 |
#if defined(IA64) && !defined(AIX) |
|
898 |
{ SIGSEGV, SEGV_PSTKOVF, "SEGV_PSTKOVF", "Paragraph stack overflow" }, |
|
899 |
#endif |
|
34233
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
900 |
#if defined(__sparc) && defined(SOLARIS) |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
901 |
// define Solaris Sparc M7 ADI SEGV signals |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
902 |
#if !defined(SEGV_ACCADI) |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
903 |
#define SEGV_ACCADI 3 |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
904 |
#endif |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
905 |
{ SIGSEGV, SEGV_ACCADI, "SEGV_ACCADI", "ADI not enabled for mapped object." }, |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
906 |
#if !defined(SEGV_ACCDERR) |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
907 |
#define SEGV_ACCDERR 4 |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
908 |
#endif |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
909 |
{ SIGSEGV, SEGV_ACCDERR, "SEGV_ACCDERR", "ADI disrupting exception." }, |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
910 |
#if !defined(SEGV_ACCPERR) |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
911 |
#define SEGV_ACCPERR 5 |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
912 |
#endif |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
913 |
{ SIGSEGV, SEGV_ACCPERR, "SEGV_ACCPERR", "ADI precise exception." }, |
2cf348387c44
8141445: Use of Solaris/SPARC M7 libadimalloc.so can generate unknown signal in hs_err file
gthornbr
parents:
33766
diff
changeset
|
914 |
#endif // defined(__sparc) && defined(SOLARIS) |
22826 | 915 |
{ SIGBUS, BUS_ADRALN, "BUS_ADRALN", "Invalid address alignment." }, |
916 |
{ SIGBUS, BUS_ADRERR, "BUS_ADRERR", "Nonexistent physical address." }, |
|
917 |
{ SIGBUS, BUS_OBJERR, "BUS_OBJERR", "Object-specific hardware error." }, |
|
918 |
{ SIGTRAP, TRAP_BRKPT, "TRAP_BRKPT", "Process breakpoint." }, |
|
919 |
{ SIGTRAP, TRAP_TRACE, "TRAP_TRACE", "Process trace trap." }, |
|
920 |
{ SIGCHLD, CLD_EXITED, "CLD_EXITED", "Child has exited." }, |
|
921 |
{ SIGCHLD, CLD_KILLED, "CLD_KILLED", "Child has terminated abnormally and did not create a core file." }, |
|
922 |
{ SIGCHLD, CLD_DUMPED, "CLD_DUMPED", "Child has terminated abnormally and created a core file." }, |
|
923 |
{ SIGCHLD, CLD_TRAPPED, "CLD_TRAPPED", "Traced child has trapped." }, |
|
924 |
{ SIGCHLD, CLD_STOPPED, "CLD_STOPPED", "Child has stopped." }, |
|
925 |
{ SIGCHLD, CLD_CONTINUED,"CLD_CONTINUED","Stopped child has continued." }, |
|
926 |
#ifdef SIGPOLL |
|
927 |
{ SIGPOLL, POLL_OUT, "POLL_OUT", "Output buffers available." }, |
|
928 |
{ SIGPOLL, POLL_MSG, "POLL_MSG", "Input message available." }, |
|
929 |
{ SIGPOLL, POLL_ERR, "POLL_ERR", "I/O error." }, |
|
930 |
{ SIGPOLL, POLL_PRI, "POLL_PRI", "High priority input available." }, |
|
931 |
{ SIGPOLL, POLL_HUP, "POLL_HUP", "Device disconnected. [Option End]" }, |
|
932 |
#endif |
|
933 |
{ -1, -1, NULL, NULL } |
|
934 |
}; |
|
935 |
||
936 |
// Codes valid in any signal context. |
|
937 |
const struct { |
|
938 |
int code; const char* s_code; const char* s_desc; |
|
939 |
} t2 [] = { |
|
940 |
{ SI_USER, "SI_USER", "Signal sent by kill()." }, |
|
941 |
{ SI_QUEUE, "SI_QUEUE", "Signal sent by the sigqueue()." }, |
|
942 |
{ SI_TIMER, "SI_TIMER", "Signal generated by expiration of a timer set by timer_settime()." }, |
|
943 |
{ SI_ASYNCIO, "SI_ASYNCIO", "Signal generated by completion of an asynchronous I/O request." }, |
|
944 |
{ SI_MESGQ, "SI_MESGQ", "Signal generated by arrival of a message on an empty message queue." }, |
|
945 |
// Linux specific |
|
946 |
#ifdef SI_TKILL |
|
947 |
{ SI_TKILL, "SI_TKILL", "Signal sent by tkill (pthread_kill)" }, |
|
948 |
#endif |
|
949 |
#ifdef SI_DETHREAD |
|
950 |
{ SI_DETHREAD, "SI_DETHREAD", "Signal sent by execve() killing subsidiary threads" }, |
|
951 |
#endif |
|
952 |
#ifdef SI_KERNEL |
|
953 |
{ SI_KERNEL, "SI_KERNEL", "Signal sent by kernel." }, |
|
954 |
#endif |
|
955 |
#ifdef SI_SIGIO |
|
956 |
{ SI_SIGIO, "SI_SIGIO", "Signal sent by queued SIGIO" }, |
|
957 |
#endif |
|
958 |
||
959 |
#ifdef AIX |
|
960 |
{ SI_UNDEFINED, "SI_UNDEFINED","siginfo contains partial information" }, |
|
961 |
{ SI_EMPTY, "SI_EMPTY", "siginfo contains no useful information" }, |
|
962 |
#endif |
|
963 |
||
964 |
#ifdef __sun |
|
965 |
{ SI_NOINFO, "SI_NOINFO", "No signal information" }, |
|
966 |
{ SI_RCTL, "SI_RCTL", "kernel generated signal via rctl action" }, |
|
967 |
{ SI_LWP, "SI_LWP", "Signal sent via lwp_kill" }, |
|
968 |
#endif |
|
969 |
||
970 |
{ -1, NULL, NULL } |
|
971 |
}; |
|
972 |
||
973 |
const char* s_code = NULL; |
|
974 |
const char* s_desc = NULL; |
|
975 |
||
976 |
for (int i = 0; t1[i].sig != -1; i ++) { |
|
977 |
if (t1[i].sig == si->si_signo && t1[i].code == si->si_code) { |
|
978 |
s_code = t1[i].s_code; |
|
979 |
s_desc = t1[i].s_desc; |
|
980 |
break; |
|
981 |
} |
|
982 |
} |
|
983 |
||
984 |
if (s_code == NULL) { |
|
985 |
for (int i = 0; t2[i].s_code != NULL; i ++) { |
|
986 |
if (t2[i].code == si->si_code) { |
|
987 |
s_code = t2[i].s_code; |
|
988 |
s_desc = t2[i].s_desc; |
|
989 |
} |
|
990 |
} |
|
991 |
} |
|
992 |
||
993 |
if (s_code == NULL) { |
|
994 |
out->s_name = "unknown"; |
|
995 |
out->s_desc = "unknown"; |
|
996 |
return false; |
|
997 |
} |
|
998 |
||
999 |
out->s_name = s_code; |
|
1000 |
out->s_desc = s_desc; |
|
1001 |
||
1002 |
return true; |
|
1003 |
} |
|
1004 |
||
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1005 |
void os::print_siginfo(outputStream* os, const void* si0) { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1006 |
|
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1007 |
const siginfo_t* const si = (const siginfo_t*) si0; |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1008 |
|
22826 | 1009 |
char buf[20]; |
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1010 |
os->print("siginfo:"); |
22826 | 1011 |
|
1012 |
if (!si) { |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1013 |
os->print(" <null>"); |
22826 | 1014 |
return; |
1015 |
} |
|
1016 |
||
1017 |
const int sig = si->si_signo; |
|
1018 |
||
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1019 |
os->print(" si_signo: %d (%s)", sig, os::Posix::get_signal_name(sig, buf, sizeof(buf))); |
22826 | 1020 |
|
1021 |
enum_sigcode_desc_t ed; |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1022 |
get_signal_code_description(si, &ed); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1023 |
os->print(", si_code: %d (%s)", si->si_code, ed.s_name); |
22826 | 1024 |
|
1025 |
if (si->si_errno) { |
|
1026 |
os->print(", si_errno: %d", si->si_errno); |
|
1027 |
} |
|
1028 |
||
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1029 |
// Output additional information depending on the signal code. |
22826 | 1030 |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1031 |
// Note: Many implementations lump si_addr, si_pid, si_uid etc. together as unions, |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1032 |
// so it depends on the context which member to use. For synchronous error signals, |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1033 |
// we print si_addr, unless the signal was sent by another process or thread, in |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1034 |
// which case we print out pid or tid of the sender. |
22826 | 1035 |
if (si->si_code == SI_USER || si->si_code == SI_QUEUE) { |
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1036 |
const pid_t pid = si->si_pid; |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1037 |
os->print(", si_pid: %ld", (long) pid); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1038 |
if (IS_VALID_PID(pid)) { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1039 |
const pid_t me = getpid(); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1040 |
if (me == pid) { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1041 |
os->print(" (current process)"); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1042 |
} |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1043 |
} else { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1044 |
os->print(" (invalid)"); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1045 |
} |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1046 |
os->print(", si_uid: %ld", (long) si->si_uid); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1047 |
if (sig == SIGCHLD) { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1048 |
os->print(", si_status: %d", si->si_status); |
22826 | 1049 |
} |
1050 |
} else if (sig == SIGSEGV || sig == SIGBUS || sig == SIGILL || |
|
1051 |
sig == SIGTRAP || sig == SIGFPE) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1052 |
os->print(", si_addr: " PTR_FORMAT, p2i(si->si_addr)); |
22826 | 1053 |
#ifdef SIGPOLL |
1054 |
} else if (sig == SIGPOLL) { |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1055 |
os->print(", si_band: %ld", si->si_band); |
22826 | 1056 |
#endif |
1057 |
} |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
35077
diff
changeset
|
1058 |
|
22826 | 1059 |
} |
1060 |
||
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1061 |
int os::Posix::unblock_thread_signal_mask(const sigset_t *set) { |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1062 |
return pthread_sigmask(SIG_UNBLOCK, set, NULL); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1063 |
} |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1064 |
|
35077
8b86440d3bf1
8145114: const-correctness for ucontext_t* reading functions
stuefe
parents:
35047
diff
changeset
|
1065 |
address os::Posix::ucontext_get_pc(const ucontext_t* ctx) { |
40010 | 1066 |
#if defined(AIX) |
1067 |
return Aix::ucontext_get_pc(ctx); |
|
1068 |
#elif defined(BSD) |
|
1069 |
return Bsd::ucontext_get_pc(ctx); |
|
1070 |
#elif defined(LINUX) |
|
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1071 |
return Linux::ucontext_get_pc(ctx); |
40010 | 1072 |
#elif defined(SOLARIS) |
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1073 |
return Solaris::ucontext_get_pc(ctx); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1074 |
#else |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1075 |
VMError::report_and_die("unimplemented ucontext_get_pc"); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1076 |
#endif |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1077 |
} |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1078 |
|
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1079 |
void os::Posix::ucontext_set_pc(ucontext_t* ctx, address pc) { |
40010 | 1080 |
#if defined(AIX) |
1081 |
Aix::ucontext_set_pc(ctx, pc); |
|
1082 |
#elif defined(BSD) |
|
1083 |
Bsd::ucontext_set_pc(ctx, pc); |
|
1084 |
#elif defined(LINUX) |
|
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1085 |
Linux::ucontext_set_pc(ctx, pc); |
40010 | 1086 |
#elif defined(SOLARIS) |
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1087 |
Solaris::ucontext_set_pc(ctx, pc); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1088 |
#else |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1089 |
VMError::report_and_die("unimplemented ucontext_get_pc"); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1090 |
#endif |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1091 |
} |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1092 |
|
36355
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1093 |
char* os::Posix::describe_pthread_attr(char* buf, size_t buflen, const pthread_attr_t* attr) { |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1094 |
size_t stack_size = 0; |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1095 |
size_t guard_size = 0; |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1096 |
int detachstate = 0; |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1097 |
pthread_attr_getstacksize(attr, &stack_size); |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1098 |
pthread_attr_getguardsize(attr, &guard_size); |
42905 | 1099 |
// Work around linux NPTL implementation error, see also os::create_thread() in os_linux.cpp. |
1100 |
LINUX_ONLY(stack_size -= guard_size); |
|
36355
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1101 |
pthread_attr_getdetachstate(attr, &detachstate); |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1102 |
jio_snprintf(buf, buflen, "stacksize: " SIZE_FORMAT "k, guardsize: " SIZE_FORMAT "k, %s", |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1103 |
stack_size / 1024, guard_size / 1024, |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1104 |
(detachstate == PTHREAD_CREATE_DETACHED ? "detached" : "joinable")); |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1105 |
return buf; |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1106 |
} |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
36174
diff
changeset
|
1107 |
|
46331 | 1108 |
char* os::Posix::realpath(const char* filename, char* outbuf, size_t outbuflen) { |
1109 |
||
1110 |
if (filename == NULL || outbuf == NULL || outbuflen < 1) { |
|
1111 |
assert(false, "os::Posix::realpath: invalid arguments."); |
|
1112 |
errno = EINVAL; |
|
1113 |
return NULL; |
|
1114 |
} |
|
1115 |
||
1116 |
char* result = NULL; |
|
1117 |
||
1118 |
// This assumes platform realpath() is implemented according to POSIX.1-2008. |
|
1119 |
// POSIX.1-2008 allows to specify NULL for the output buffer, in which case |
|
1120 |
// output buffer is dynamically allocated and must be ::free()'d by the caller. |
|
1121 |
char* p = ::realpath(filename, NULL); |
|
1122 |
if (p != NULL) { |
|
1123 |
if (strlen(p) < outbuflen) { |
|
1124 |
strcpy(outbuf, p); |
|
1125 |
result = outbuf; |
|
1126 |
} else { |
|
1127 |
errno = ENAMETOOLONG; |
|
1128 |
} |
|
1129 |
::free(p); // *not* os::free |
|
1130 |
} else { |
|
1131 |
// Fallback for platforms struggling with modern Posix standards (AIX 5.3, 6.1). If realpath |
|
1132 |
// returns EINVAL, this may indicate that realpath is not POSIX.1-2008 compatible and |
|
1133 |
// that it complains about the NULL we handed down as user buffer. |
|
1134 |
// In this case, use the user provided buffer but at least check whether realpath caused |
|
1135 |
// a memory overwrite. |
|
1136 |
if (errno == EINVAL) { |
|
1137 |
outbuf[outbuflen - 1] = '\0'; |
|
1138 |
p = ::realpath(filename, outbuf); |
|
1139 |
if (p != NULL) { |
|
1140 |
guarantee(outbuf[outbuflen - 1] == '\0', "realpath buffer overwrite detected."); |
|
1141 |
result = p; |
|
1142 |
} |
|
1143 |
} |
|
1144 |
} |
|
1145 |
return result; |
|
1146 |
||
1147 |
} |
|
1148 |
||
1149 |
||
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1150 |
// Check minimum allowable stack sizes for thread creation and to initialize |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1151 |
// the java system classes, including StackOverflowError - depends on page |
42906
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1152 |
// size. |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1153 |
// The space needed for frames during startup is platform dependent. It |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1154 |
// depends on word size, platform calling conventions, C frame layout and |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1155 |
// interpreter/C1/C2 design decisions. Therefore this is given in a |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1156 |
// platform (os/cpu) dependent constant. |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1157 |
// To this, space for guard mechanisms is added, which depends on the |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1158 |
// page size which again depends on the concrete system the VM is running |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1159 |
// on. Space for libc guard pages is not included in this size. |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1160 |
jint os::Posix::set_minimum_stack_sizes() { |
46346
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1161 |
size_t os_min_stack_allowed = SOLARIS_ONLY(thr_min_stack()) NOT_SOLARIS(PTHREAD_STACK_MIN); |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1162 |
|
42906
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1163 |
_java_thread_min_stack_allowed = _java_thread_min_stack_allowed + |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1164 |
JavaThread::stack_guard_zone_size() + |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1165 |
JavaThread::stack_shadow_zone_size(); |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1166 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1167 |
_java_thread_min_stack_allowed = align_size_up(_java_thread_min_stack_allowed, vm_page_size()); |
46346
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1168 |
_java_thread_min_stack_allowed = MAX2(_java_thread_min_stack_allowed, os_min_stack_allowed); |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1169 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1170 |
size_t stack_size_in_bytes = ThreadStackSize * K; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1171 |
if (stack_size_in_bytes != 0 && |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1172 |
stack_size_in_bytes < _java_thread_min_stack_allowed) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1173 |
// The '-Xss' and '-XX:ThreadStackSize=N' options both set |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1174 |
// ThreadStackSize so we go with "Java thread stack size" instead |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1175 |
// of "ThreadStackSize" to be more friendly. |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1176 |
tty->print_cr("\nThe Java thread stack size specified is too small. " |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1177 |
"Specify at least " SIZE_FORMAT "k", |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1178 |
_java_thread_min_stack_allowed / K); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1179 |
return JNI_ERR; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1180 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1181 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1182 |
// Make the stack size a multiple of the page size so that |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1183 |
// the yellow/red zones can be guarded. |
42906
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1184 |
JavaThread::set_stack_size_at_create(round_to(stack_size_in_bytes, vm_page_size())); |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1185 |
|
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1186 |
// Reminder: a compiler thread is a Java thread. |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1187 |
_compiler_thread_min_stack_allowed = _compiler_thread_min_stack_allowed + |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1188 |
JavaThread::stack_guard_zone_size() + |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
42905
diff
changeset
|
1189 |
JavaThread::stack_shadow_zone_size(); |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1190 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1191 |
_compiler_thread_min_stack_allowed = align_size_up(_compiler_thread_min_stack_allowed, vm_page_size()); |
46346
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1192 |
_compiler_thread_min_stack_allowed = MAX2(_compiler_thread_min_stack_allowed, os_min_stack_allowed); |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1193 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1194 |
stack_size_in_bytes = CompilerThreadStackSize * K; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1195 |
if (stack_size_in_bytes != 0 && |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1196 |
stack_size_in_bytes < _compiler_thread_min_stack_allowed) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1197 |
tty->print_cr("\nThe CompilerThreadStackSize specified is too small. " |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1198 |
"Specify at least " SIZE_FORMAT "k", |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1199 |
_compiler_thread_min_stack_allowed / K); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1200 |
return JNI_ERR; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1201 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1202 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1203 |
_vm_internal_thread_min_stack_allowed = align_size_up(_vm_internal_thread_min_stack_allowed, vm_page_size()); |
46346
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1204 |
_vm_internal_thread_min_stack_allowed = MAX2(_vm_internal_thread_min_stack_allowed, os_min_stack_allowed); |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1205 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1206 |
stack_size_in_bytes = VMThreadStackSize * K; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1207 |
if (stack_size_in_bytes != 0 && |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1208 |
stack_size_in_bytes < _vm_internal_thread_min_stack_allowed) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1209 |
tty->print_cr("\nThe VMThreadStackSize specified is too small. " |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1210 |
"Specify at least " SIZE_FORMAT "k", |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1211 |
_vm_internal_thread_min_stack_allowed / K); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1212 |
return JNI_ERR; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1213 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1214 |
return JNI_OK; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1215 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1216 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1217 |
// Called when creating the thread. The minimum stack sizes have already been calculated |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1218 |
size_t os::Posix::get_initial_stack_size(ThreadType thr_type, size_t req_stack_size) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1219 |
size_t stack_size; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1220 |
if (req_stack_size == 0) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1221 |
stack_size = default_stack_size(thr_type); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1222 |
} else { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1223 |
stack_size = req_stack_size; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1224 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1225 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1226 |
switch (thr_type) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1227 |
case os::java_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1228 |
// Java threads use ThreadStackSize which default value can be |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1229 |
// changed with the flag -Xss |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1230 |
if (req_stack_size == 0 && JavaThread::stack_size_at_create() > 0) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1231 |
// no requested size and we have a more specific default value |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1232 |
stack_size = JavaThread::stack_size_at_create(); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1233 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1234 |
stack_size = MAX2(stack_size, |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1235 |
_java_thread_min_stack_allowed); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1236 |
break; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1237 |
case os::compiler_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1238 |
if (req_stack_size == 0 && CompilerThreadStackSize > 0) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1239 |
// no requested size and we have a more specific default value |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1240 |
stack_size = (size_t)(CompilerThreadStackSize * K); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1241 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1242 |
stack_size = MAX2(stack_size, |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1243 |
_compiler_thread_min_stack_allowed); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1244 |
break; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1245 |
case os::vm_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1246 |
case os::pgc_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1247 |
case os::cgc_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1248 |
case os::watcher_thread: |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1249 |
default: // presume the unknown thr_type is a VM internal |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1250 |
if (req_stack_size == 0 && VMThreadStackSize > 0) { |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1251 |
// no requested size and we have a more specific default value |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1252 |
stack_size = (size_t)(VMThreadStackSize * K); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1253 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1254 |
|
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1255 |
stack_size = MAX2(stack_size, |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1256 |
_vm_internal_thread_min_stack_allowed); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1257 |
break; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1258 |
} |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1259 |
|
46346
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1260 |
// pthread_attr_setstacksize() may require that the size be rounded up to the OS page size. |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1261 |
// Be careful not to round up to 0. Align down in that case. |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1262 |
if (stack_size <= SIZE_MAX - vm_page_size()) { |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1263 |
stack_size = align_size_up(stack_size, vm_page_size()); |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1264 |
} else { |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1265 |
stack_size = align_size_down(stack_size, vm_page_size()); |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1266 |
} |
4085295dcf51
8176768: hotspot ignores PTHREAD_STACK_MIN when creating new threads
cjplummer
parents:
46331
diff
changeset
|
1267 |
|
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1268 |
return stack_size; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
40383
diff
changeset
|
1269 |
} |
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34233
diff
changeset
|
1270 |
|
18943 | 1271 |
os::WatcherThreadCrashProtection::WatcherThreadCrashProtection() { |
1272 |
assert(Thread::current()->is_Watcher_thread(), "Must be WatcherThread"); |
|
1273 |
} |
|
1274 |
||
1275 |
/* |
|
1276 |
* See the caveats for this class in os_posix.hpp |
|
1277 |
* Protects the callback call so that SIGSEGV / SIGBUS jumps back into this |
|
1278 |
* method and returns false. If none of the signals are raised, returns true. |
|
1279 |
* The callback is supposed to provide the method that should be protected. |
|
1280 |
*/ |
|
1281 |
bool os::WatcherThreadCrashProtection::call(os::CrashProtectionCallback& cb) { |
|
19691
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1282 |
sigset_t saved_sig_mask; |
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1283 |
|
18943 | 1284 |
assert(Thread::current()->is_Watcher_thread(), "Only for WatcherThread"); |
1285 |
assert(!WatcherThread::watcher_thread()->has_crash_protection(), |
|
1286 |
"crash_protection already set?"); |
|
1287 |
||
19691
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1288 |
// we cannot rely on sigsetjmp/siglongjmp to save/restore the signal mask |
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1289 |
// since on at least some systems (OS X) siglongjmp will restore the mask |
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1290 |
// for the process, not the thread |
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1291 |
pthread_sigmask(0, NULL, &saved_sig_mask); |
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1292 |
if (sigsetjmp(_jmpbuf, 0) == 0) { |
18943 | 1293 |
// make sure we can see in the signal handler that we have crash protection |
1294 |
// installed |
|
1295 |
WatcherThread::watcher_thread()->set_crash_protection(this); |
|
1296 |
cb.call(); |
|
1297 |
// and clear the crash protection |
|
1298 |
WatcherThread::watcher_thread()->set_crash_protection(NULL); |
|
1299 |
return true; |
|
1300 |
} |
|
1301 |
// this happens when we siglongjmp() back |
|
19691
5116fb76692a
8023720: (hotspot) setjmp/longjmp changes the process signal mask on OS X
sla
parents:
18943
diff
changeset
|
1302 |
pthread_sigmask(SIG_SETMASK, &saved_sig_mask, NULL); |
18943 | 1303 |
WatcherThread::watcher_thread()->set_crash_protection(NULL); |
1304 |
return false; |
|
1305 |
} |
|
1306 |
||
1307 |
void os::WatcherThreadCrashProtection::restore() { |
|
1308 |
assert(WatcherThread::watcher_thread()->has_crash_protection(), |
|
1309 |
"must have crash protection"); |
|
1310 |
||
1311 |
siglongjmp(_jmpbuf, 1); |
|
1312 |
} |
|
1313 |
||
1314 |
void os::WatcherThreadCrashProtection::check_crash_protection(int sig, |
|
1315 |
Thread* thread) { |
|
1316 |
||
1317 |
if (thread != NULL && |
|
1318 |
thread->is_Watcher_thread() && |
|
1319 |
WatcherThread::watcher_thread()->has_crash_protection()) { |
|
1320 |
||
1321 |
if (sig == SIGSEGV || sig == SIGBUS) { |
|
1322 |
WatcherThread::watcher_thread()->crash_protection()->restore(); |
|
1323 |
} |
|
1324 |
} |
|
1325 |
} |
|
31610 | 1326 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31991
diff
changeset
|
1327 |
#define check_with_errno(check_type, cond, msg) \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31991
diff
changeset
|
1328 |
do { \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31991
diff
changeset
|
1329 |
int err = errno; \ |
37113 | 1330 |
check_type(cond, "%s; error='%s' (errno=%s)", msg, os::strerror(err), \ |
1331 |
os::errno_name(err)); \ |
|
31610 | 1332 |
} while (false) |
1333 |
||
1334 |
#define assert_with_errno(cond, msg) check_with_errno(assert, cond, msg) |
|
1335 |
#define guarantee_with_errno(cond, msg) check_with_errno(guarantee, cond, msg) |
|
1336 |
||
1337 |
// POSIX unamed semaphores are not supported on OS X. |
|
1338 |
#ifndef __APPLE__ |
|
1339 |
||
1340 |
PosixSemaphore::PosixSemaphore(uint value) { |
|
1341 |
int ret = sem_init(&_semaphore, 0, value); |
|
1342 |
||
1343 |
guarantee_with_errno(ret == 0, "Failed to initialize semaphore"); |
|
1344 |
} |
|
1345 |
||
1346 |
PosixSemaphore::~PosixSemaphore() { |
|
1347 |
sem_destroy(&_semaphore); |
|
1348 |
} |
|
1349 |
||
1350 |
void PosixSemaphore::signal(uint count) { |
|
1351 |
for (uint i = 0; i < count; i++) { |
|
1352 |
int ret = sem_post(&_semaphore); |
|
1353 |
||
1354 |
assert_with_errno(ret == 0, "sem_post failed"); |
|
1355 |
} |
|
1356 |
} |
|
1357 |
||
1358 |
void PosixSemaphore::wait() { |
|
1359 |
int ret; |
|
1360 |
||
1361 |
do { |
|
1362 |
ret = sem_wait(&_semaphore); |
|
1363 |
} while (ret != 0 && errno == EINTR); |
|
1364 |
||
1365 |
assert_with_errno(ret == 0, "sem_wait failed"); |
|
1366 |
} |
|
1367 |
||
1368 |
bool PosixSemaphore::trywait() { |
|
1369 |
int ret; |
|
1370 |
||
1371 |
do { |
|
1372 |
ret = sem_trywait(&_semaphore); |
|
1373 |
} while (ret != 0 && errno == EINTR); |
|
1374 |
||
1375 |
assert_with_errno(ret == 0 || errno == EAGAIN, "trywait failed"); |
|
1376 |
||
1377 |
return ret == 0; |
|
1378 |
} |
|
1379 |
||
31991
a7dd5bba0fd8
8132232: Signature mismatch between declaration and definition of PosixSemaphore::timedwait
simonis
parents:
31963
diff
changeset
|
1380 |
bool PosixSemaphore::timedwait(struct timespec ts) { |
31610 | 1381 |
while (true) { |
1382 |
int result = sem_timedwait(&_semaphore, &ts); |
|
1383 |
if (result == 0) { |
|
1384 |
return true; |
|
1385 |
} else if (errno == EINTR) { |
|
1386 |
continue; |
|
1387 |
} else if (errno == ETIMEDOUT) { |
|
1388 |
return false; |
|
1389 |
} else { |
|
1390 |
assert_with_errno(false, "timedwait failed"); |
|
1391 |
return false; |
|
1392 |
} |
|
1393 |
} |
|
1394 |
} |
|
1395 |
||
1396 |
#endif // __APPLE__ |