annotate agent/src/os/linux/mapfile @ 17991:a07a3a29df67

8046408: Build failure from multiple ptrace.h Summary: prefer <sys/ptrace.h> over <linux/ptrace.h> Reviewed-by: sla, mikael Contributed-by: kim.barrett@oracle.com
author jwilhelm
date Fri, 13 Jun 2014 17:07:39 -0400
parents 5a98bf7d847b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
6782
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 1552
diff changeset
2 # Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23
a61af66fc99e Initial load
duke
parents:
diff changeset
24 # Define public interface.
a61af66fc99e Initial load
duke
parents:
diff changeset
25
a61af66fc99e Initial load
duke
parents:
diff changeset
26 SUNWprivate_1.1 {
a61af66fc99e Initial load
duke
parents:
diff changeset
27 global:
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # native methods of LinuxDebuggerLocal class
a61af66fc99e Initial load
duke
parents:
diff changeset
30 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_init0;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_getAddressSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_attach0__I;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_detach0;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByName0;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByAddress0;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_readBytesFromProcess0;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_getThreadIntegerRegisterSet0;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
6782
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 1552
diff changeset
40 # Disassembler interface
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 1552
diff changeset
41 Java_sun_jvm_hotspot_asm_Disassembler_decode;
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 1552
diff changeset
42 Java_sun_jvm_hotspot_asm_Disassembler_load_1library;
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 1552
diff changeset
43
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 # proc_service.h functions - to be used by libthread_db
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ps_getpid;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ps_pglobal_lookup;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ps_pdread;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ps_pdwrite;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ps_lsetfpregs;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ps_lsetregs;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ps_lgetfpregs;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ps_lgetregs;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ps_get_thread_area;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 # used by attach test program
a61af66fc99e Initial load
duke
parents:
diff changeset
56 init_libproc;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Pgrab;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Pgrab_core;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 Prelease;
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 local:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 *;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 };