src/hotspot/os/posix/os_posix.hpp
author kbarrett
Tue, 19 Mar 2019 14:32:41 -0400
changeset 54195 4b6a629d0615
parent 54090 3086f9259e97
child 57738 807d192fb7dd
permissions -rw-r--r--
8218975: Bug in macOSX kernel's pthread support Summary: Use freelist of pthread_mutex/condvar pairs on macOSX. Reviewed-by: tschatzl, dholmes, dcubed Contributed-by: kim.barrett@oracle.com, patricio.chilano.mateo@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    64
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    65
  // Returns true if signal is valid.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    68
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    69
  // Helper function, returns a string (e.g. "SIGILL") for a signal.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    70
  // Returned string is a constant. For unknown signals "UNKNOWN" is returned.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    71
  static const char* get_signal_name(int sig, char* out, size_t outlen);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    79
  // Returns one-line short description of a signal set in a user provided buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    80
  static const char* describe_signal_set_short(const sigset_t* set, char* buffer, size_t size);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    81
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    82
  // Prints a short one-line description of a signal set.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    83
  static void print_signal_set_short(outputStream* st, const sigset_t* set);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    88
  // Writes a one-line description of a combination of sigaction.sa_flags
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    89
  // into a user provided buffer. Returns that buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    90
  static const char* describe_sa_flags(int flags, char* buffer, size_t size);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    91
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    92
  // Prints a one-line description of a combination of sigaction.sa_flags.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    93
  static void print_sa_flags(outputStream* st, int flags);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    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
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   103
  // A safe implementation of realpath which will not cause a buffer overflow if the resolved path
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   104
  //   is longer than PATH_MAX.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   105
  // On success, returns 'outbuf', which now contains the path.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   106
  // On error, it will return NULL and set errno. The content of 'outbuf' is undefined.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   107
  // On truncation error ('outbuf' too small), it will return NULL and set errno to ENAMETOOLONG.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   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
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   147
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   148
 * Crash protection for the watcher thread. Wrap the callback
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   149
 * with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   150
 * back.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   151
 * To be able to use this - don't take locks, don't rely on destructors,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   152
 * don't make OS library calls, don't allocate memory, don't print,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   153
 * don't call code that could leave the heap / memory in an inconsistent state,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   154
 * or anything else where we are not in control if we suddenly jump out.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   155
 */
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   156
class ThreadCrashProtection : public StackObj {
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   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
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   163
  bool call(os::CrashProtectionCallback& cb);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   164
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   165
  static void check_crash_protection(int signal, Thread* thread);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   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
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   170
  void restore();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   171
  sigjmp_buf _jmpbuf;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   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
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   235
// Workaround for a bug in macOSX kernel's pthread support (fixed in Mojave?).
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   236
// Avoid ever allocating a pthread_mutex_t at the same address as one of our
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   237
// former pthread_cond_t, by using a freelist of mutex/condvar pairs.
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   238
// Conditional to avoid extra indirection and padding loss on other platforms.
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   239
#ifdef __APPLE__
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   240
#define PLATFORM_MONITOR_IMPL_INDIRECT 1
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   241
#else
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   242
#define PLATFORM_MONITOR_IMPL_INDIRECT 0
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   243
#endif
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   244
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   245
// Platform specific implementation that underpins VM Monitor/Mutex class
53849
46ef4dea49e5 8219370: NMT: Move synchronization primitives from mtInternal to mtSynchronizer
zgu
parents: 53654
diff changeset
   246
class PlatformMonitor : public CHeapObj<mtSynchronizer> {
54195
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   247
  class Impl : public CHeapObj<mtSynchronizer> {
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   248
  public:
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   249
    pthread_mutex_t _mutex;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   250
    pthread_cond_t _cond;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   251
    Impl* _next;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   252
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   253
    Impl();
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   254
    ~Impl();
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   255
  };
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   256
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   257
#if PLATFORM_MONITOR_IMPL_INDIRECT
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   258
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   259
  Impl* _impl;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   260
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   261
  pthread_mutex_t* mutex() { return &(_impl->_mutex); }
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   262
  pthread_cond_t* cond() { return &(_impl->_cond); }
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   263
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   264
  class WithFreeListLocked;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   265
  static pthread_mutex_t _freelist_lock;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   266
  static Impl* _freelist;
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   267
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   268
 public:
54195
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   269
  PlatformMonitor();            // Use freelist allocation of impl.
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   270
  ~PlatformMonitor();
54195
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   271
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   272
  static void init();           // Initialize the freelist.
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   273
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   274
#else
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   275
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   276
  Impl _impl;
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   277
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   278
  pthread_mutex_t* mutex() { return &(_impl._mutex); }
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   279
  pthread_cond_t* cond() { return &(_impl._cond); }
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   280
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   281
 public:
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   282
  static void init() {}         // Nothing needed for the non-indirect case.
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   283
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   284
  // Default constructor and destructor.
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   285
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   286
#endif // PLATFORM_MONITOR_IMPL_INDIRECT
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   287
4b6a629d0615 8218975: Bug in macOSX kernel's pthread support
kbarrett
parents: 54090
diff changeset
   288
 public:
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   289
  void lock();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   290
  void unlock();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   291
  bool try_lock();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   292
  int wait(jlong millis);
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   293
  void notify();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   294
  void notify_all();
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   295
};
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53461
diff changeset
   296
46507
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   297
#endif // !SOLARIS
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   298
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52585
diff changeset
   299
#endif // OS_POSIX_OS_POSIX_HPP