author | iklam |
Fri, 18 Sep 2015 09:48:49 -0700 | |
changeset 32821 | ef088e4410ea |
parent 32619 | 47acec81dcca |
child 33756 | fc1eddc092e7 |
permissions | -rw-r--r-- |
10565 | 1 |
# |
28737
ca4b6a6e5cc8
8068730: Increase the precision of the implementation of java.time.Clock.systemUTC()
dfuchs
parents:
28168
diff
changeset
|
2 |
# Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. |
10565 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
# or visit www.oracle.com if you need additional information or have any |
|
21 |
# questions. |
|
30222
bfe6be3c4ef8
8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents:
28947
diff
changeset
|
22 |
# |
10565 | 23 |
# |
24 |
||
25 |
# Define public interface. |
|
22494
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
26 |
|
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
27 |
SUNWprivate_1.1 { |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
28 |
global: |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
29 |
JVM_handle_linux_signal; |
10565 | 30 |
|
31 |
# miscellaneous functions |
|
22494
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
32 |
jio_fprintf; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
33 |
jio_printf; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
34 |
jio_snprintf; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
35 |
jio_vfprintf; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
36 |
jio_vsnprintf; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
37 |
fork1; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
38 |
numa_warn; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
39 |
numa_error; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
40 |
|
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
41 |
# Needed because there is no JVM interface for this. |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
42 |
sysThreadAvailableStackWithSlack; |
10565 | 43 |
|
44 |
# This is for Forte Analyzer profiling support. |
|
22494
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
45 |
AsyncGetCallTrace; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
46 |
|
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
47 |
# INSERT VTABLE SYMBOLS HERE |
10565 | 48 |
|
22494
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
49 |
local: |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
50 |
*; |
65bae79a77ed
8030941: Darwin mapfile-vers doesnt work for other BSDs
dsamersoff
parents:
18690
diff
changeset
|
51 |
}; |
10565 | 52 |