author | alanb |
Thu, 21 Mar 2019 08:41:10 +0000 | |
branch | niosocketimpl-branch |
changeset 57275 | 222fa5ed1c91 |
parent 53244 | 9807daeb47c4 |
child 55524 | b279ae9843b8 |
child 58678 | 9cf78a70fa4f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51106
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51106
diff
changeset
|
25 |
#ifndef OS_SOLARIS_OS_SOLARIS_INLINE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51106
diff
changeset
|
26 |
#define OS_SOLARIS_OS_SOLARIS_INLINE_HPP |
7397 | 27 |
|
28 |
#include "runtime/os.hpp" |
|
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
13963
diff
changeset
|
29 |
|
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
30 |
// System includes |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
31 |
#include <sys/param.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
32 |
#include <dlfcn.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
33 |
#include <sys/socket.h> |
46454
f090a0a198cd
8180003: Remove sys/ prefix from poll.h and signal.h includes
mikael
parents:
39390
diff
changeset
|
34 |
#include <poll.h> |
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
35 |
#include <sys/filio.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
36 |
#include <unistd.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
37 |
#include <netdb.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
38 |
#include <setjmp.h> |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
39 |
|
50199
83d8b3a25f25
8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents:
47216
diff
changeset
|
40 |
// File names are case-insensitive on windows only |
83d8b3a25f25
8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents:
47216
diff
changeset
|
41 |
inline int os::file_name_strncmp(const char* s1, const char* s2, size_t num) { |
83d8b3a25f25
8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents:
47216
diff
changeset
|
42 |
return strncmp(s1, s2, num); |
1 | 43 |
} |
44 |
||
45 |
inline bool os::uses_stack_guard_pages() { |
|
46 |
return true; |
|
47 |
} |
|
48 |
||
39390
edf6a424a8b7
8159335: Fix problems with stack overflow handling.
goetz
parents:
35479
diff
changeset
|
49 |
inline bool os::must_commit_stack_guard_pages() { |
1 | 50 |
assert(uses_stack_guard_pages(), "sanity check"); |
51 |
int r = thr_main() ; |
|
52 |
guarantee (r == 0 || r == 1, "CR6501650 or CR6493689") ; |
|
53 |
return r; |
|
54 |
} |
|
55 |
||
56 |
||
57 |
// On Solaris, reservations are made on a page by page basis, nothing to do. |
|
13195 | 58 |
inline void os::pd_split_reserved_memory(char *base, size_t size, |
1 | 59 |
size_t split, bool realloc) { |
60 |
} |
|
61 |
||
62 |
||
63 |
// Bang the shadow pages if they need to be touched to be mapped. |
|
39390
edf6a424a8b7
8159335: Fix problems with stack overflow handling.
goetz
parents:
35479
diff
changeset
|
64 |
inline void os::map_stack_shadow_pages(address sp) { |
1 | 65 |
} |
39390
edf6a424a8b7
8159335: Fix problems with stack overflow handling.
goetz
parents:
35479
diff
changeset
|
66 |
|
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
67 |
inline void os::dll_unload(void *lib) { ::dlclose(lib); } |
1 | 68 |
|
33632 | 69 |
inline const int os::default_file_open_flags() { return 0;} |
70 |
||
1 | 71 |
////////////////////////////////////////////////////////////////////////////// |
72 |
//////////////////////////////////////////////////////////////////////////////// |
|
73 |
||
23443
15e8ed68f73a
8036128: Remove deprecated VM flag UseVMInterruptibleIO
fparain
parents:
22891
diff
changeset
|
74 |
// macros for restartable system calls |
1 | 75 |
|
76 |
#define RESTARTABLE(_cmd, _result) do { \ |
|
77 |
do { \ |
|
78 |
_result = _cmd; \ |
|
79 |
} while((_result == OS_ERR) && (errno == EINTR)); \ |
|
80 |
} while(false) |
|
81 |
||
82 |
#define RESTARTABLE_RETURN_INT(_cmd) do { \ |
|
83 |
int _result; \ |
|
84 |
RESTARTABLE(_cmd, _result); \ |
|
85 |
return _result; \ |
|
86 |
} while(false) |
|
388 | 87 |
|
88 |
inline bool os::numa_has_static_binding() { return false; } |
|
89 |
inline bool os::numa_has_group_homing() { return true; } |
|
7397 | 90 |
|
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
91 |
inline int os::socket(int domain, int type, int protocol) { |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
92 |
return ::socket(domain, type, protocol); |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
93 |
} |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
94 |
|
11256
025cd1741566
7091417: recvfrom's 6th input should be of type socklen_t
phh
parents:
7405
diff
changeset
|
95 |
inline struct hostent* os::get_host_by_name(char* name) { |
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
96 |
return ::gethostbyname(name); |
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
97 |
} |
11256
025cd1741566
7091417: recvfrom's 6th input should be of type socklen_t
phh
parents:
7405
diff
changeset
|
98 |
|
22891
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18441
diff
changeset
|
99 |
inline bool os::supports_monotonic_clock() { |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18441
diff
changeset
|
100 |
// javaTimeNanos() is monotonic on Solaris, see getTimeNanos() comments |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18441
diff
changeset
|
101 |
return true; |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18441
diff
changeset
|
102 |
} |
1f5d1fff23fa
6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler
fparain
parents:
18441
diff
changeset
|
103 |
|
26682
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
104 |
inline void os::exit(int num) { |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
105 |
::exit(num); |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
106 |
} |
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
25468
diff
changeset
|
107 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51106
diff
changeset
|
108 |
#endif // OS_SOLARIS_OS_SOLARIS_INLINE_HPP |