author | stefank |
Fri, 13 Feb 2015 14:37:35 +0100 | |
changeset 29081 | c61eb4914428 |
parent 27466 | 36c9a91eb418 |
child 35185 | 31b4d3da482f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
27466
36c9a91eb418
8061616: HotspotDiagnosticMXBean.getVMOption() throws IllegalArgumentException for flags of type double
jbachorik
parents:
22200
diff
changeset
|
2 |
* Copyright (c) 2003, 2014, 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 |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
1 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
1 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
23 |
* questions. |
1 | 24 |
*/ |
25 |
||
26 |
#ifndef _JAVA_JMM_H_ |
|
27 |
#define _JAVA_JMM_H_ |
|
28 |
||
29 |
/* |
|
30 |
* This is a private interface used by JDK for JVM monitoring |
|
31 |
* and management. |
|
32 |
* |
|
33 |
* Bump the version number when either of the following happens: |
|
34 |
* |
|
35 |
* 1. There is a change in functions in JmmInterface. |
|
36 |
* |
|
37 |
* 2. There is a change in the contract between VM and Java classes. |
|
38 |
*/ |
|
39 |
||
40 |
#include "jni.h" |
|
41 |
||
42 |
#ifdef __cplusplus |
|
43 |
extern "C" { |
|
44 |
#endif |
|
45 |
||
46 |
enum { |
|
47 |
JMM_VERSION_1 = 0x20010000, |
|
48 |
JMM_VERSION_1_0 = 0x20010000, |
|
49 |
JMM_VERSION_1_1 = 0x20010100, // JDK 6 |
|
50 |
JMM_VERSION_1_2 = 0x20010200, // JDK 7 |
|
11209 | 51 |
JMM_VERSION_1_2_1 = 0x20010201, // JDK 7 GA |
17296
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
52 |
JMM_VERSION_1_2_2 = 0x20010202, |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
53 |
JMM_VERSION = 0x20010203 |
1 | 54 |
}; |
55 |
||
56 |
typedef struct { |
|
57 |
unsigned int isLowMemoryDetectionSupported : 1; |
|
58 |
unsigned int isCompilationTimeMonitoringSupported : 1; |
|
59 |
unsigned int isThreadContentionMonitoringSupported : 1; |
|
60 |
unsigned int isCurrentThreadCpuTimeSupported : 1; |
|
61 |
unsigned int isOtherThreadCpuTimeSupported : 1; |
|
62 |
unsigned int isBootClassPathSupported : 1; |
|
63 |
unsigned int isObjectMonitorUsageSupported : 1; |
|
64 |
unsigned int isSynchronizerUsageSupported : 1; |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
65 |
unsigned int isThreadAllocatedMemorySupported : 1; |
17296
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
66 |
unsigned int isRemoteDiagnosticCommandsSupported : 1; |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
67 |
unsigned int : 22; |
1 | 68 |
} jmmOptionalSupport; |
69 |
||
70 |
typedef enum { |
|
71 |
JMM_CLASS_LOADED_COUNT = 1, /* Total number of loaded classes */ |
|
72 |
JMM_CLASS_UNLOADED_COUNT = 2, /* Total number of unloaded classes */ |
|
73 |
JMM_THREAD_TOTAL_COUNT = 3, /* Total number of threads that have been started */ |
|
74 |
JMM_THREAD_LIVE_COUNT = 4, /* Current number of live threads */ |
|
75 |
JMM_THREAD_PEAK_COUNT = 5, /* Peak number of live threads */ |
|
76 |
JMM_THREAD_DAEMON_COUNT = 6, /* Current number of daemon threads */ |
|
77 |
JMM_JVM_INIT_DONE_TIME_MS = 7, /* Time when the JVM finished initialization */ |
|
78 |
JMM_COMPILE_TOTAL_TIME_MS = 8, /* Total accumulated time spent in compilation */ |
|
79 |
JMM_GC_TIME_MS = 9, /* Total accumulated time spent in collection */ |
|
80 |
JMM_GC_COUNT = 10, /* Total number of collections */ |
|
21185
9d53434b1ef5
8027294: Prepare hotspot for non TOD based uptime counter
jbachorik
parents:
17296
diff
changeset
|
81 |
JMM_JVM_UPTIME_MS = 11, /* The JVM uptime in milliseconds */ |
1 | 82 |
|
83 |
JMM_INTERNAL_ATTRIBUTE_INDEX = 100, |
|
84 |
JMM_CLASS_LOADED_BYTES = 101, /* Number of bytes loaded instance classes */ |
|
85 |
JMM_CLASS_UNLOADED_BYTES = 102, /* Number of bytes unloaded instance classes */ |
|
86 |
JMM_TOTAL_CLASSLOAD_TIME_MS = 103, /* Accumulated VM class loader time (TraceClassLoadingTime) */ |
|
87 |
JMM_VM_GLOBAL_COUNT = 104, /* Number of VM internal flags */ |
|
88 |
JMM_SAFEPOINT_COUNT = 105, /* Total number of safepoints */ |
|
89 |
JMM_TOTAL_SAFEPOINTSYNC_TIME_MS = 106, /* Accumulated time spent getting to safepoints */ |
|
90 |
JMM_TOTAL_STOPPED_TIME_MS = 107, /* Accumulated time spent at safepoints */ |
|
91 |
JMM_TOTAL_APP_TIME_MS = 108, /* Accumulated time spent in Java application */ |
|
92 |
JMM_VM_THREAD_COUNT = 109, /* Current number of VM internal threads */ |
|
93 |
JMM_CLASS_INIT_TOTAL_COUNT = 110, /* Number of classes for which initializers were run */ |
|
94 |
JMM_CLASS_INIT_TOTAL_TIME_MS = 111, /* Accumulated time spent in class initializers */ |
|
95 |
JMM_METHOD_DATA_SIZE_BYTES = 112, /* Size of method data in memory */ |
|
96 |
JMM_CLASS_VERIFY_TOTAL_TIME_MS = 113, /* Accumulated time spent in class verifier */ |
|
97 |
JMM_SHARED_CLASS_LOADED_COUNT = 114, /* Number of shared classes loaded */ |
|
98 |
JMM_SHARED_CLASS_UNLOADED_COUNT = 115, /* Number of shared classes unloaded */ |
|
99 |
JMM_SHARED_CLASS_LOADED_BYTES = 116, /* Number of bytes loaded shared classes */ |
|
100 |
JMM_SHARED_CLASS_UNLOADED_BYTES = 117, /* Number of bytes unloaded shared classes */ |
|
101 |
||
102 |
JMM_OS_ATTRIBUTE_INDEX = 200, |
|
103 |
JMM_OS_PROCESS_ID = 201, /* Process id of the JVM */ |
|
104 |
JMM_OS_MEM_TOTAL_PHYSICAL_BYTES = 202, /* Physical memory size */ |
|
105 |
||
106 |
JMM_GC_EXT_ATTRIBUTE_INFO_SIZE = 401 /* the size of the GC specific attributes for a given GC memory manager */ |
|
107 |
} jmmLongAttribute; |
|
108 |
||
109 |
typedef enum { |
|
110 |
JMM_VERBOSE_GC = 21, |
|
111 |
JMM_VERBOSE_CLASS = 22, |
|
112 |
JMM_THREAD_CONTENTION_MONITORING = 23, |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
113 |
JMM_THREAD_CPU_TIME = 24, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
114 |
JMM_THREAD_ALLOCATED_MEMORY = 25 |
1 | 115 |
} jmmBoolAttribute; |
116 |
||
117 |
||
118 |
enum { |
|
119 |
JMM_THREAD_STATE_FLAG_SUSPENDED = 0x00100000, |
|
120 |
JMM_THREAD_STATE_FLAG_NATIVE = 0x00400000 |
|
121 |
}; |
|
122 |
||
123 |
#define JMM_THREAD_STATE_FLAG_MASK 0xFFF00000 |
|
124 |
||
125 |
typedef enum { |
|
126 |
JMM_STAT_PEAK_THREAD_COUNT = 801, |
|
127 |
JMM_STAT_THREAD_CONTENTION_COUNT = 802, |
|
128 |
JMM_STAT_THREAD_CONTENTION_TIME = 803, |
|
129 |
JMM_STAT_THREAD_CONTENTION_STAT = 804, |
|
130 |
JMM_STAT_PEAK_POOL_USAGE = 805, |
|
131 |
JMM_STAT_GC_STAT = 806 |
|
132 |
} jmmStatisticType; |
|
133 |
||
134 |
typedef enum { |
|
135 |
JMM_USAGE_THRESHOLD_HIGH = 901, |
|
136 |
JMM_USAGE_THRESHOLD_LOW = 902, |
|
137 |
JMM_COLLECTION_USAGE_THRESHOLD_HIGH = 903, |
|
138 |
JMM_COLLECTION_USAGE_THRESHOLD_LOW = 904 |
|
139 |
} jmmThresholdType; |
|
140 |
||
141 |
/* Should match what is allowed in globals.hpp */ |
|
142 |
typedef enum { |
|
143 |
JMM_VMGLOBAL_TYPE_UNKNOWN = 0, |
|
144 |
JMM_VMGLOBAL_TYPE_JBOOLEAN = 1, |
|
145 |
JMM_VMGLOBAL_TYPE_JSTRING = 2, |
|
27466
36c9a91eb418
8061616: HotspotDiagnosticMXBean.getVMOption() throws IllegalArgumentException for flags of type double
jbachorik
parents:
22200
diff
changeset
|
146 |
JMM_VMGLOBAL_TYPE_JLONG = 3, |
36c9a91eb418
8061616: HotspotDiagnosticMXBean.getVMOption() throws IllegalArgumentException for flags of type double
jbachorik
parents:
22200
diff
changeset
|
147 |
JMM_VMGLOBAL_TYPE_JDOUBLE = 4 |
1 | 148 |
} jmmVMGlobalType; |
149 |
||
150 |
typedef enum { |
|
151 |
JMM_VMGLOBAL_ORIGIN_DEFAULT = 1, /* Default value */ |
|
152 |
JMM_VMGLOBAL_ORIGIN_COMMAND_LINE = 2, /* Set at command line (or JNI invocation) */ |
|
153 |
JMM_VMGLOBAL_ORIGIN_MANAGEMENT = 3, /* Set via management interface */ |
|
154 |
JMM_VMGLOBAL_ORIGIN_ENVIRON_VAR = 4, /* Set via environment variables */ |
|
155 |
JMM_VMGLOBAL_ORIGIN_CONFIG_FILE = 5, /* Set via config file (such as .hotspotrc) */ |
|
156 |
JMM_VMGLOBAL_ORIGIN_ERGONOMIC = 6, /* Set via ergonomic */ |
|
22200
05db8f8522fe
8031305: (hotspot) com.sun.management.VMOption is missing the ATTACH_ON_DEMAND origin
sla
parents:
21185
diff
changeset
|
157 |
JMM_VMGLOBAL_ORIGIN_ATTACH_ON_DEMAND = 7, /* Set via attach */ |
1 | 158 |
JMM_VMGLOBAL_ORIGIN_OTHER = 99 /* Set via some other mechanism */ |
159 |
} jmmVMGlobalOrigin; |
|
160 |
||
161 |
typedef struct { |
|
162 |
jstring name; |
|
163 |
jvalue value; |
|
164 |
jmmVMGlobalType type; /* Data type */ |
|
165 |
jmmVMGlobalOrigin origin; /* Default or non-default value */ |
|
166 |
unsigned int writeable : 1; /* dynamically writeable */ |
|
167 |
unsigned int external : 1; /* external supported interface */ |
|
168 |
unsigned int reserved : 30; |
|
169 |
void *reserved1; |
|
170 |
void *reserved2; |
|
171 |
} jmmVMGlobal; |
|
172 |
||
173 |
typedef struct { |
|
174 |
const char* name; |
|
175 |
char type; |
|
176 |
const char* description; |
|
177 |
} jmmExtAttributeInfo; |
|
178 |
||
179 |
/* Caller has to set the following fields before calling GetLastGCStat |
|
180 |
* o usage_before_gc - array of MemoryUsage objects |
|
181 |
* o usage_after_gc - array of MemoryUsage objects |
|
182 |
* o gc_ext_attribute_values_size - size of gc_ext_atttribute_values array |
|
183 |
* o gc_ext_attribtue_values - array of jvalues |
|
184 |
*/ |
|
185 |
typedef struct { |
|
186 |
jlong gc_index; /* Index of the collections */ |
|
187 |
jlong start_time; /* Start time of the GC */ |
|
188 |
jlong end_time; /* End time of the GC */ |
|
189 |
jobjectArray usage_before_gc; /* Memory usage array before GC */ |
|
190 |
jobjectArray usage_after_gc; /* Memory usage array after GC */ |
|
191 |
jint gc_ext_attribute_values_size; /* set by the caller of GetGCStat */ |
|
192 |
jvalue* gc_ext_attribute_values; /* Array of jvalue for GC extension attributes */ |
|
193 |
jint num_gc_ext_attributes; /* number of GC extension attribute values s are filled */ |
|
194 |
/* -1 indicates gc_ext_attribute_values is not big enough */ |
|
195 |
} jmmGCStat; |
|
196 |
||
11209 | 197 |
typedef struct { |
17296
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
198 |
const char* name; /* Name of the diagnostic command */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
199 |
const char* description; /* Short description */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
200 |
const char* impact; /* Impact on the JVM */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
201 |
const char* permission_class; /* Class name of the required permission if any */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
202 |
const char* permission_name; /* Permission name of the required permission if any */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
203 |
const char* permission_action; /* Action name of the required permission if any*/ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
204 |
int num_arguments; /* Number of supported options or arguments */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
205 |
jboolean enabled; /* True if the diagnostic command can be invoked, false otherwise */ |
11209 | 206 |
} dcmdInfo; |
207 |
||
208 |
typedef struct { |
|
17296
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
209 |
const char* name; /* Option/Argument name*/ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
210 |
const char* description; /* Short description */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
211 |
const char* type; /* Type: STRING, BOOLEAN, etc. */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
212 |
const char* default_string; /* Default value in a parsable string */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
213 |
jboolean mandatory; /* True if the option/argument is mandatory */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
214 |
jboolean option; /* True if it is an option, false if it is an argument */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
215 |
/* (see diagnosticFramework.hpp for option/argument definitions) */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
216 |
jboolean multiple; /* True if the option can be specified several time */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
217 |
int position; /* Expected position for this argument (this field is */ |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
218 |
/* meaningless for options) */ |
11209 | 219 |
} dcmdArgInfo; |
220 |
||
1 | 221 |
typedef struct jmmInterface_1_ { |
222 |
void* reserved1; |
|
223 |
void* reserved2; |
|
224 |
||
225 |
jint (JNICALL *GetVersion) (JNIEnv *env); |
|
226 |
||
227 |
jint (JNICALL *GetOptionalSupport) (JNIEnv *env, |
|
228 |
jmmOptionalSupport* support_ptr); |
|
229 |
||
230 |
/* This is used by JDK 6 and earlier. |
|
231 |
* For JDK 7 and after, use GetInputArgumentArray. |
|
232 |
*/ |
|
233 |
jobject (JNICALL *GetInputArguments) (JNIEnv *env); |
|
234 |
||
235 |
jint (JNICALL *GetThreadInfo) (JNIEnv *env, |
|
236 |
jlongArray ids, |
|
237 |
jint maxDepth, |
|
238 |
jobjectArray infoArray); |
|
239 |
jobjectArray (JNICALL *GetInputArgumentArray) (JNIEnv *env); |
|
240 |
||
241 |
jobjectArray (JNICALL *GetMemoryPools) (JNIEnv* env, jobject mgr); |
|
242 |
||
243 |
jobjectArray (JNICALL *GetMemoryManagers) (JNIEnv* env, jobject pool); |
|
244 |
||
245 |
jobject (JNICALL *GetMemoryPoolUsage) (JNIEnv* env, jobject pool); |
|
246 |
jobject (JNICALL *GetPeakMemoryPoolUsage) (JNIEnv* env, jobject pool); |
|
247 |
||
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
248 |
void (JNICALL *GetThreadAllocatedMemory) |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
249 |
(JNIEnv *env, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
250 |
jlongArray ids, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
251 |
jlongArray sizeArray); |
1 | 252 |
|
253 |
jobject (JNICALL *GetMemoryUsage) (JNIEnv* env, jboolean heap); |
|
254 |
||
255 |
jlong (JNICALL *GetLongAttribute) (JNIEnv *env, jobject obj, jmmLongAttribute att); |
|
256 |
jboolean (JNICALL *GetBoolAttribute) (JNIEnv *env, jmmBoolAttribute att); |
|
257 |
jboolean (JNICALL *SetBoolAttribute) (JNIEnv *env, jmmBoolAttribute att, jboolean flag); |
|
258 |
||
259 |
jint (JNICALL *GetLongAttributes) (JNIEnv *env, |
|
260 |
jobject obj, |
|
261 |
jmmLongAttribute* atts, |
|
262 |
jint count, |
|
263 |
jlong* result); |
|
264 |
||
265 |
jobjectArray (JNICALL *FindCircularBlockedThreads) (JNIEnv *env); |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
266 |
|
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
267 |
// Not used in JDK 6 or JDK 7 |
1 | 268 |
jlong (JNICALL *GetThreadCpuTime) (JNIEnv *env, jlong thread_id); |
269 |
||
270 |
jobjectArray (JNICALL *GetVMGlobalNames) (JNIEnv *env); |
|
271 |
jint (JNICALL *GetVMGlobals) (JNIEnv *env, |
|
272 |
jobjectArray names, |
|
273 |
jmmVMGlobal *globals, |
|
274 |
jint count); |
|
275 |
||
276 |
jint (JNICALL *GetInternalThreadTimes) (JNIEnv *env, |
|
277 |
jobjectArray names, |
|
278 |
jlongArray times); |
|
279 |
||
280 |
jboolean (JNICALL *ResetStatistic) (JNIEnv *env, |
|
281 |
jvalue obj, |
|
282 |
jmmStatisticType type); |
|
283 |
||
284 |
void (JNICALL *SetPoolSensor) (JNIEnv *env, |
|
285 |
jobject pool, |
|
286 |
jmmThresholdType type, |
|
287 |
jobject sensor); |
|
288 |
||
289 |
jlong (JNICALL *SetPoolThreshold) (JNIEnv *env, |
|
290 |
jobject pool, |
|
291 |
jmmThresholdType type, |
|
292 |
jlong threshold); |
|
293 |
jobject (JNICALL *GetPoolCollectionUsage) (JNIEnv* env, jobject pool); |
|
294 |
||
295 |
jint (JNICALL *GetGCExtAttributeInfo) (JNIEnv *env, |
|
296 |
jobject mgr, |
|
297 |
jmmExtAttributeInfo *ext_info, |
|
298 |
jint count); |
|
299 |
void (JNICALL *GetLastGCStat) (JNIEnv *env, |
|
300 |
jobject mgr, |
|
301 |
jmmGCStat *gc_stat); |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
302 |
|
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
303 |
jlong (JNICALL *GetThreadCpuTimeWithKind) |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
304 |
(JNIEnv *env, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
305 |
jlong thread_id, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
306 |
jboolean user_sys_cpu_time); |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
307 |
void (JNICALL *GetThreadCpuTimesWithKind) |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
308 |
(JNIEnv *env, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
309 |
jlongArray ids, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
310 |
jlongArray timeArray, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
311 |
jboolean user_sys_cpu_time); |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
312 |
|
1 | 313 |
jint (JNICALL *DumpHeap0) (JNIEnv *env, |
314 |
jstring outputfile, |
|
315 |
jboolean live); |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
316 |
jobjectArray (JNICALL *FindDeadlocks) (JNIEnv *env, |
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
317 |
jboolean object_monitors_only); |
1 | 318 |
void (JNICALL *SetVMGlobal) (JNIEnv *env, |
319 |
jstring flag_name, |
|
320 |
jvalue new_value); |
|
321 |
void* reserved6; |
|
322 |
jobjectArray (JNICALL *DumpThreads) (JNIEnv *env, |
|
323 |
jlongArray ids, |
|
324 |
jboolean lockedMonitors, |
|
325 |
jboolean lockedSynchronizers); |
|
9623
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
7724
diff
changeset
|
326 |
void (JNICALL *SetGCNotificationEnabled) (JNIEnv *env, |
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
7724
diff
changeset
|
327 |
jobject mgr, |
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
7724
diff
changeset
|
328 |
jboolean enabled); |
11209 | 329 |
jobjectArray (JNICALL *GetDiagnosticCommands) (JNIEnv *env); |
330 |
void (JNICALL *GetDiagnosticCommandInfo) |
|
331 |
(JNIEnv *env, |
|
332 |
jobjectArray cmds, |
|
333 |
dcmdInfo *infoArray); |
|
334 |
void (JNICALL *GetDiagnosticCommandArgumentsInfo) |
|
335 |
(JNIEnv *env, |
|
336 |
jstring commandName, |
|
337 |
dcmdArgInfo *infoArray); |
|
338 |
jstring (JNICALL *ExecuteDiagnosticCommand) |
|
339 |
(JNIEnv *env, |
|
340 |
jstring command); |
|
17296
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
341 |
void (JNICALL *SetDiagnosticFrameworkNotificationEnabled) |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
342 |
(JNIEnv *env, |
68557efd8583
8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents:
11209
diff
changeset
|
343 |
jboolean enabled); |
1 | 344 |
} JmmInterface; |
345 |
||
346 |
#ifdef __cplusplus |
|
347 |
} /* extern "C" */ |
|
348 |
#endif /* __cplusplus */ |
|
349 |
||
350 |
#endif /* !_JAVA_JMM_H_ */ |