1 --- a/src/hotspot/share/runtime/mutex.hpp Wed Jul 6 08:12:32 2022
2 +++ b/src/hotspot/share/runtime/mutex.hpp Thu Jul 7 13:59:23 2022
4 #include "runtime/atomic.hpp"
5 #include "runtime/semaphore.hpp"
7 -#if defined(LINUX) || defined(AIX) || defined(BSD)
8 +#if defined(LINUX) || defined(AIX) || defined(BSD) || defined(SOLARIS)
9 # include "mutex_posix.hpp"
11 # include OS_HEADER(mutex)
12 --- a/src/hotspot/share/runtime/park.hpp Wed Jul 6 08:12:32 2022
13 +++ b/src/hotspot/share/runtime/park.hpp Thu Jul 7 14:01:18 2022
15 #include "utilities/debug.hpp"
16 #include "utilities/globalDefinitions.hpp"
18 -#if defined(LINUX) || defined(AIX) || defined(BSD)
19 +#if defined(LINUX) || defined(AIX) || defined(BSD) || defined(SOLARIS)
20 # include "park_posix.hpp"
22 # include OS_HEADER(park)
23 --- a/src/hotspot/share/runtime/threadCrashProtection.hpp Wed Jul 6 08:12:32 2022
24 +++ b/src/hotspot/share/runtime/threadCrashProtection.hpp Thu Jul 7 14:11:04 2022
26 #define SHARE_RUNTIME_THREADCRASHPROTECTION_HPP
28 #include "memory/allocation.hpp"
29 -#if defined(LINUX) || defined(AIX) || defined(BSD)
30 +#if defined(LINUX) || defined(AIX) || defined(BSD) || defined(SOLARIS)
31 # include "threadCrashProtection_posix.hpp"
33 # include OS_HEADER(threadCrashProtection)