author | dholmes |
Wed, 14 Aug 2019 00:18:00 -0400 | |
changeset 57738 | 807d192fb7dd |
parent 54195 | 4b6a629d0615 |
permissions | -rw-r--r-- |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52585
diff
changeset
|
2 |
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved. |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
4 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
8 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
13 |
* accompanied this code). |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
14 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
18 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
21 |
* questions. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
22 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
23 |
*/ |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
24 |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
25 |
#include "runtime/os.hpp" |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
26 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52585
diff
changeset
|
27 |
#ifndef OS_POSIX_OS_POSIX_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52585
diff
changeset
|
28 |
#define OS_POSIX_OS_POSIX_HPP |
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
29 |
|
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
30 |
// File conventions |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
31 |
static const char* file_separator() { return "/"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
32 |
static const char* line_separator() { return "\n"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
33 |
static const char* path_separator() { return ":"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
34 |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
35 |
class Posix { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
36 |
friend class os; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
37 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
38 |
protected: |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
39 |
static void print_distro_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
40 |
static void print_rlimit_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
41 |
static void print_uname_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
42 |
static void print_libversion_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
43 |
static void print_load_average(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
44 |
|
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
45 |
// Minimum stack size a thread can be created with (allowing |
42906
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
46 |
// the VM to completely create the thread and enter user code). |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
47 |
// The initial values exclude any guard pages (by HotSpot or libc). |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
48 |
// set_minimum_stack_sizes() will add the size required for |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
49 |
// HotSpot guard pages depending on page size and flag settings. |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
50 |
// Libc guard pages are never considered by these values. |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
51 |
static size_t _compiler_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
52 |
static size_t _java_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
53 |
static size_t _vm_internal_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
54 |
|
22826 | 55 |
public: |
46507
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
56 |
static void init(void); // early initialization - no logging available |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
57 |
static void init_2(void);// later initialization - logging available |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
58 |
|
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
59 |
// Return default stack size for the specified thread type |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
60 |
static size_t default_stack_size(os::ThreadType thr_type); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
61 |
// Check and sets minimum stack sizes |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
62 |
static jint set_minimum_stack_sizes(); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
63 |
static size_t get_initial_stack_size(ThreadType thr_type, size_t req_stack_size); |
22826 | 64 |
|
65 |
// Returns true if signal is valid. |
|
66 |
static bool is_valid_signal(int sig); |
|
50177
9806f23d5e5e
8134537: Much nearly duplicated code for sun.misc.Signal support
coleenp
parents:
47216
diff
changeset
|
67 |
static bool is_sig_ignored(int sig); |
22826 | 68 |
|
69 |
// Helper function, returns a string (e.g. "SIGILL") for a signal. |
|
70 |
// Returned string is a constant. For unknown signals "UNKNOWN" is returned. |
|
71 |
static const char* get_signal_name(int sig, char* out, size_t outlen); |
|
72 |
||
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
73 |
// Helper function, returns a signal number for a given signal name, e.g. 11 |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
74 |
// for "SIGSEGV". Name can be given with or without "SIG" prefix, so both |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
75 |
// "SEGV" or "SIGSEGV" work. Name must be uppercase. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
76 |
// Returns -1 for an unknown signal name. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
77 |
static int get_signal_number(const char* signal_name); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
78 |
|
22826 | 79 |
// Returns one-line short description of a signal set in a user provided buffer. |
80 |
static const char* describe_signal_set_short(const sigset_t* set, char* buffer, size_t size); |
|
81 |
||
82 |
// Prints a short one-line description of a signal set. |
|
83 |
static void print_signal_set_short(outputStream* st, const sigset_t* set); |
|
84 |
||
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
85 |
// unblocks the signal masks for current thread |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
86 |
static int unblock_thread_signal_mask(const sigset_t *set); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
87 |
|
22826 | 88 |
// Writes a one-line description of a combination of sigaction.sa_flags |
89 |
// into a user provided buffer. Returns that buffer. |
|
90 |
static const char* describe_sa_flags(int flags, char* buffer, size_t size); |
|
91 |
||
92 |
// Prints a one-line description of a combination of sigaction.sa_flags. |
|
93 |
static void print_sa_flags(outputStream* st, int flags); |
|
94 |
||
35077
8b86440d3bf1
8145114: const-correctness for ucontext_t* reading functions
stuefe
parents:
34621
diff
changeset
|
95 |
static address ucontext_get_pc(const ucontext_t* ctx); |
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
96 |
// Set PC into context. Needed for continuation after signal. |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
97 |
static void ucontext_set_pc(ucontext_t* ctx, address pc); |
36355
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
98 |
|
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
99 |
// Helper function; describes pthread attributes as short string. String is written |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
100 |
// to buf with len buflen; buf is returned. |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
101 |
static char* 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:
35176
diff
changeset
|
102 |
|
46331 | 103 |
// A safe implementation of realpath which will not cause a buffer overflow if the resolved path |
104 |
// is longer than PATH_MAX. |
|
105 |
// On success, returns 'outbuf', which now contains the path. |
|
106 |
// On error, it will return NULL and set errno. The content of 'outbuf' is undefined. |
|
107 |
// On truncation error ('outbuf' too small), it will return NULL and set errno to ENAMETOOLONG. |
|
108 |
static char* realpath(const char* filename, char* outbuf, size_t outbuflen); |
|
50333
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
109 |
|
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
110 |
// Returns true if given uid is root. |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
111 |
static bool is_root(uid_t uid); |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
112 |
|
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
113 |
// Returns true if given uid is effective or root uid. |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
114 |
static bool matches_effective_uid_or_root(uid_t uid); |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
115 |
|
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
116 |
// Returns true if either given uid is effective uid and given gid is |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
117 |
// effective gid, or if given uid is root. |
7cea35f78b50
8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents:
50177
diff
changeset
|
118 |
static bool matches_effective_uid_and_gid_or_root(uid_t uid, gid_t gid); |
51989
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
119 |
|
54090
3086f9259e97
8170639: [Linux] jsig is limited to a maximum of 64 signals
aoqi
parents:
53849
diff
changeset
|
120 |
static struct sigaction *get_preinstalled_handler(int); |
3086f9259e97
8170639: [Linux] jsig is limited to a maximum of 64 signals
aoqi
parents:
53849
diff
changeset
|
121 |
static void save_preinstalled_handler(int, struct sigaction&); |
3086f9259e97
8170639: [Linux] jsig is limited to a maximum of 64 signals
aoqi
parents:
53849
diff
changeset
|
122 |
|
52585
f7f90fddce02
8211326: add OS user related information to hs_err file
mbaesken
parents:
52460
diff
changeset
|
123 |
static void print_umask(outputStream* st, mode_t umsk); |
f7f90fddce02
8211326: add OS user related information to hs_err file
mbaesken
parents:
52460
diff
changeset
|
124 |
|
f7f90fddce02
8211326: add OS user related information to hs_err file
mbaesken
parents:
52460
diff
changeset
|
125 |
static void print_user_info(outputStream* st); |
f7f90fddce02
8211326: add OS user related information to hs_err file
mbaesken
parents:
52460
diff
changeset
|
126 |
|
51989
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
127 |
#ifdef SUPPORTS_CLOCK_MONOTONIC |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
128 |
|
53654
7054249afee5
8217843: Performance regression related to os::supports_monotonic_clock() on linux
dholmes
parents:
53646
diff
changeset
|
129 |
private: |
7054249afee5
8217843: Performance regression related to os::supports_monotonic_clock() on linux
dholmes
parents:
53646
diff
changeset
|
130 |
// These need to be members so we can access them from inline functions |
7054249afee5
8217843: Performance regression related to os::supports_monotonic_clock() on linux
dholmes
parents:
53646
diff
changeset
|
131 |
static int (*_clock_gettime)(clockid_t, struct timespec *); |
7054249afee5
8217843: Performance regression related to os::supports_monotonic_clock() on linux
dholmes
parents:
53646
diff
changeset
|
132 |
static int (*_clock_getres)(clockid_t, struct timespec *); |
7054249afee5
8217843: Performance regression related to os::supports_monotonic_clock() on linux
dholmes
parents:
53646
diff
changeset
|
133 |
public: |
51989
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
134 |
static bool supports_monotonic_clock(); |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
135 |
static int clock_gettime(clockid_t clock_id, struct timespec *tp); |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
136 |
static int clock_getres(clockid_t clock_id, struct timespec *tp); |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
137 |
|
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
138 |
#else |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
139 |
|
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
140 |
static bool supports_monotonic_clock() { return false; } |
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
141 |
|
7ac0ac1e57b6
8211175: Remove temporary clock initialization duplication
dholmes
parents:
50333
diff
changeset
|
142 |
#endif |
53461
08d6edeb3145
8194860: Cleanup Semaphore timed-wait time calculations
dholmes
parents:
53244
diff
changeset
|
143 |
|
08d6edeb3145
8194860: Cleanup Semaphore timed-wait time calculations
dholmes
parents:
53244
diff
changeset
|
144 |
static void to_RTC_abstime(timespec* abstime, int64_t millis); |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
145 |
}; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
146 |
|
18943 | 147 |
/* |
148 |
* Crash protection for the watcher thread. Wrap the callback |
|
149 |
* with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp |
|
150 |
* back. |
|
151 |
* To be able to use this - don't take locks, don't rely on destructors, |
|
152 |
* don't make OS library calls, don't allocate memory, don't print, |
|
153 |
* don't call code that could leave the heap / memory in an inconsistent state, |
|
154 |
* or anything else where we are not in control if we suddenly jump out. |
|
155 |
*/ |
|
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
156 |
class ThreadCrashProtection : public StackObj { |
18943 | 157 |
public: |
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
158 |
static bool is_crash_protected(Thread* thr) { |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
159 |
return _crash_protection != NULL && _protected_thread == thr; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
160 |
} |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
161 |
|
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
162 |
ThreadCrashProtection(); |
18943 | 163 |
bool call(os::CrashProtectionCallback& cb); |
164 |
||
165 |
static void check_crash_protection(int signal, Thread* thread); |
|
166 |
private: |
|
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
167 |
static Thread* _protected_thread; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
168 |
static ThreadCrashProtection* _crash_protection; |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46604
diff
changeset
|
169 |
static volatile intptr_t _crash_mux; |
18943 | 170 |
void restore(); |
171 |
sigjmp_buf _jmpbuf; |
|
172 |
}; |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
173 |
|
46507
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
174 |
#ifndef SOLARIS |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
175 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
176 |
/* |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
177 |
* This is the platform-specific implementation underpinning |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
178 |
* the ParkEvent class, which itself underpins Java-level monitor |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
179 |
* operations. See park.hpp for details. |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
180 |
* These event objects are type-stable and immortal - we never delete them. |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
181 |
* Events are associated with a thread for the lifetime of the thread. |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
182 |
*/ |
53849
46ef4dea49e5
8219370: NMT: Move synchronization primitives from mtInternal to mtSynchronizer
zgu
parents:
53654
diff
changeset
|
183 |
class PlatformEvent : public CHeapObj<mtSynchronizer> { |
46507
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
184 |
private: |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
185 |
double cachePad[4]; // Increase odds that _mutex is sole occupant of cache line |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
186 |
volatile int _event; // Event count/permit: -1, 0 or 1 |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
187 |
volatile int _nParked; // Indicates if associated thread is blocked: 0 or 1 |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
188 |
pthread_mutex_t _mutex[1]; // Native mutex for locking |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
189 |
pthread_cond_t _cond[1]; // Native condition variable for blocking |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
190 |
double postPad[2]; |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
191 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
192 |
protected: // TODO-FIXME: make dtor private |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
193 |
~PlatformEvent() { guarantee(false, "invariant"); } // immortal so can't delete |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
194 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
195 |
public: |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
196 |
PlatformEvent(); |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
197 |
void park(); |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
198 |
int park(jlong millis); |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
199 |
void unpark(); |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
200 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
201 |
// Use caution with reset() and fired() -- they may require MEMBARs |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
202 |
void reset() { _event = 0; } |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
203 |
int fired() { return _event; } |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
204 |
}; |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
205 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
206 |
// JSR166 support |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
207 |
// PlatformParker provides the platform dependent base class for the |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
208 |
// Parker class. It basically provides the internal data structures: |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
209 |
// - mutex and convars |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
210 |
// which are then used directly by the Parker methods defined in the OS |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
211 |
// specific implementation files. |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
212 |
// There is significant overlap between the funcionality supported in the |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
213 |
// combination of Parker+PlatformParker and PlatformEvent (above). If Parker |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
214 |
// were more like ObjectMonitor we could use PlatformEvent in both (with some |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
215 |
// API updates of course). But Parker methods use fastpaths that break that |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
216 |
// level of encapsulation - so combining the two remains a future project. |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
217 |
|
53849
46ef4dea49e5
8219370: NMT: Move synchronization primitives from mtInternal to mtSynchronizer
zgu
parents:
53654
diff
changeset
|
218 |
class PlatformParker : public CHeapObj<mtSynchronizer> { |
46507
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
219 |
protected: |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
220 |
enum { |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
221 |
REL_INDEX = 0, |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
222 |
ABS_INDEX = 1 |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
223 |
}; |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
224 |
int _cur_index; // which cond is in use: -1, 0, 1 |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
225 |
pthread_mutex_t _mutex[1]; |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
226 |
pthread_cond_t _cond[2]; // one for relative times and one for absolute |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
227 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
228 |
public: // TODO-FIXME: make dtor private |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
229 |
~PlatformParker() { guarantee(false, "invariant"); } |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
230 |
|
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
231 |
public: |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
232 |
PlatformParker(); |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
233 |
}; |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
234 |
|
54195 | 235 |
// Workaround for a bug in macOSX kernel's pthread support (fixed in Mojave?). |
236 |
// Avoid ever allocating a pthread_mutex_t at the same address as one of our |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
237 |
// former pthread_cond_t, by using freelists of mutexes and condvars. |
54195 | 238 |
// Conditional to avoid extra indirection and padding loss on other platforms. |
239 |
#ifdef __APPLE__ |
|
240 |
#define PLATFORM_MONITOR_IMPL_INDIRECT 1 |
|
241 |
#else |
|
242 |
#define PLATFORM_MONITOR_IMPL_INDIRECT 0 |
|
243 |
#endif |
|
244 |
||
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
245 |
// Platform specific implementations that underpin VM Mutex/Monitor classes |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
246 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
247 |
class PlatformMutex : public CHeapObj<mtSynchronizer> { |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
248 |
#if PLATFORM_MONITOR_IMPL_INDIRECT |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
249 |
class Mutex : public CHeapObj<mtSynchronizer> { |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
250 |
public: |
54195 | 251 |
pthread_mutex_t _mutex; |
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
252 |
Mutex* _next; |
54195 | 253 |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
254 |
Mutex(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
255 |
~Mutex(); |
54195 | 256 |
}; |
257 |
||
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
258 |
Mutex* _impl; |
54195 | 259 |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
260 |
static pthread_mutex_t _freelist_lock; // used for mutex and cond freelists |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
261 |
static Mutex* _mutex_freelist; |
54195 | 262 |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
263 |
protected: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
264 |
class WithFreeListLocked; |
54195 | 265 |
pthread_mutex_t* mutex() { return &(_impl->_mutex); } |
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
266 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
267 |
public: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
268 |
PlatformMutex(); // Use freelist allocation of impl. |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
269 |
~PlatformMutex(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
270 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
271 |
static void init(); // Initialize the freelist. |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
272 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
273 |
#else |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
274 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
275 |
pthread_mutex_t _mutex; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
276 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
277 |
protected: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
278 |
pthread_mutex_t* mutex() { return &_mutex; } |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
279 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
280 |
public: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
281 |
static void init() {} // Nothing needed for the non-indirect case. |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
282 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
283 |
PlatformMutex(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
284 |
~PlatformMutex(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
285 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
286 |
#endif // PLATFORM_MONITOR_IMPL_INDIRECT |
54195 | 287 |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
288 |
private: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
289 |
// Disable copying |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
290 |
PlatformMutex(const PlatformMutex&); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
291 |
PlatformMutex& operator=(const PlatformMutex&); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
292 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
293 |
public: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
294 |
void lock(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
295 |
void unlock(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
296 |
bool try_lock(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
297 |
}; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
298 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
299 |
class PlatformMonitor : public PlatformMutex { |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
300 |
#if PLATFORM_MONITOR_IMPL_INDIRECT |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
301 |
class Cond : public CHeapObj<mtSynchronizer> { |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
302 |
public: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
303 |
pthread_cond_t _cond; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
304 |
Cond* _next; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
305 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
306 |
Cond(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
307 |
~Cond(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
308 |
}; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
309 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
310 |
Cond* _impl; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
311 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
312 |
static Cond* _cond_freelist; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
313 |
|
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
314 |
pthread_cond_t* cond() { return &(_impl->_cond); } |
53646
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
315 |
|
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
316 |
public: |
54195 | 317 |
PlatformMonitor(); // Use freelist allocation of impl. |
53646
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
318 |
~PlatformMonitor(); |
54195 | 319 |
|
320 |
#else |
|
321 |
||
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
322 |
pthread_cond_t _cond; |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
323 |
pthread_cond_t* cond() { return &_cond; } |
54195 | 324 |
|
325 |
public: |
|
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
326 |
PlatformMonitor(); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
327 |
~PlatformMonitor(); |
54195 | 328 |
|
329 |
#endif // PLATFORM_MONITOR_IMPL_INDIRECT |
|
330 |
||
57738
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
331 |
private: |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
332 |
// Disable copying |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
333 |
PlatformMonitor(const PlatformMonitor&); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
334 |
PlatformMonitor& operator=(const PlatformMonitor&); |
807d192fb7dd
8228857: Refactor PlatformMonitor into PlatformMutex and PlatformMonitor
dholmes
parents:
54195
diff
changeset
|
335 |
|
54195 | 336 |
public: |
53646
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
337 |
int wait(jlong millis); |
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
338 |
void notify(); |
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
339 |
void notify_all(); |
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
340 |
}; |
043ae846819f
8210832: Remove sneaky locking in class Monitor
pchilanomate
parents:
53461
diff
changeset
|
341 |
|
46507
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
342 |
#endif // !SOLARIS |
7db40fa6eff7
8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents:
46331
diff
changeset
|
343 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
52585
diff
changeset
|
344 |
#endif // OS_POSIX_OS_POSIX_HPP |