annotate src/share/vm/prims/jvmtiEventController.hpp @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents a61af66fc99e
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2003, 2004, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #ifndef _JAVA_JVMTI_EVENT_CONTROLLER_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #define _JAVA_JVMTI_EVENT_CONTROLLER_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // forward declaration
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class JvmtiEventController;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class JvmtiEnvThreadState;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class JvmtiFramePop;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class JvmtiEnvBase;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Extension event support
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // jvmtiExtEvent is the extensions equivalent of jvmtiEvent
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // jvmtiExtCallbacks is the extensions equivalent of jvmtiEventCallbacks
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Extension events start JVMTI_MIN_EVENT_TYPE_VAL-1 and work towards 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 typedef enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 EXT_EVENT_CLASS_UNLOAD = JVMTI_MIN_EVENT_TYPE_VAL-1,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 EXT_MIN_EVENT_TYPE_VAL = EXT_EVENT_CLASS_UNLOAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 EXT_MAX_EVENT_TYPE_VAL = EXT_EVENT_CLASS_UNLOAD
a61af66fc99e Initial load
duke
parents:
diff changeset
46 } jvmtiExtEvent;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 jvmtiExtensionEvent ClassUnload;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 } jvmtiExtEventCallbacks;
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // The complete range of events is EXT_MIN_EVENT_TYPE_VAL to
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // JVMTI_MAX_EVENT_TYPE_VAL (inclusive and contiguous).
a61af66fc99e Initial load
duke
parents:
diff changeset
55 const int TOTAL_MIN_EVENT_TYPE_VAL = EXT_MIN_EVENT_TYPE_VAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 const int TOTAL_MAX_EVENT_TYPE_VAL = JVMTI_MAX_EVENT_TYPE_VAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
60 //
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // JvmtiEventEnabled
a61af66fc99e Initial load
duke
parents:
diff changeset
62 //
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Utility class
a61af66fc99e Initial load
duke
parents:
diff changeset
64 //
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // A boolean array indexed by event_type, used as an internal
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // data structure to track what JVMTI event types are enabled.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Used for user set enabling and disabling (globally and on a
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // per thread basis), and for computed merges across environments,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // threads and the VM as a whole.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 //
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // for inlines see jvmtiEventController_inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
72 //
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 class JvmtiEventEnabled VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 friend class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 jlong _enabled_bits;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
79 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 JEE_INIT_GUARD = 0xEAD0
a61af66fc99e Initial load
duke
parents:
diff changeset
81 } _init_guard;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static jlong bit_for(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 jlong get_bits();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void set_bits(jlong bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
87 JvmtiEventEnabled();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
89 bool is_enabled(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void set_enabled(jvmtiEvent event_type, bool enabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 };
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
95 //
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // JvmtiEnvThreadEventEnable
a61af66fc99e Initial load
duke
parents:
diff changeset
97 //
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // JvmtiEventController data specific to a particular environment and thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 //
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // for inlines see jvmtiEventController_inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
101 //
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 class JvmtiEnvThreadEventEnable VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
105 friend class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 JvmtiEventEnabled _event_user_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 JvmtiEventEnabled _event_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 JvmtiEnvThreadEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ~JvmtiEnvThreadEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 bool is_enabled(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void set_user_enabled(jvmtiEvent event_type, bool enabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 };
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
118 //
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // JvmtiThreadEventEnable
a61af66fc99e Initial load
duke
parents:
diff changeset
120 //
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // JvmtiEventController data specific to a particular thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 //
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // for inlines see jvmtiEventController_inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
124 //
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 class JvmtiThreadEventEnable VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
128 friend class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 JvmtiEventEnabled _event_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
132 JvmtiThreadEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 ~JvmtiThreadEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bool is_enabled(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 };
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
139 //
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // JvmtiEnvEventEnable
a61af66fc99e Initial load
duke
parents:
diff changeset
141 //
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // JvmtiEventController data specific to a particular environment.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 //
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // for inlines see jvmtiEventController_inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
145 //
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 class JvmtiEnvEventEnable VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
149 friend class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // user set global event enablement indexed by jvmtiEvent
a61af66fc99e Initial load
duke
parents:
diff changeset
152 JvmtiEventEnabled _event_user_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // this flag indicates the presence (true) or absence (false) of event callbacks
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // it is indexed by jvmtiEvent
a61af66fc99e Initial load
duke
parents:
diff changeset
156 JvmtiEventEnabled _event_callback_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // indexed by jvmtiEvent true if enabled globally or on any thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // True only if there is a callback for it.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 JvmtiEventEnabled _event_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
163 JvmtiEnvEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
164 ~JvmtiEnvEventEnable();
a61af66fc99e Initial load
duke
parents:
diff changeset
165 bool is_enabled(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void set_user_enabled(jvmtiEvent event_type, bool enabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 };
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
171 //
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // JvmtiEventController
a61af66fc99e Initial load
duke
parents:
diff changeset
173 //
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // The class is the access point for all actions that change
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // which events are active, this include:
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // enabling and disabling events
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // changing the callbacks/eventhook (they may be null)
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // setting and clearing field watchpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // setting frame pops
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // encountering frame pops
a61af66fc99e Initial load
duke
parents:
diff changeset
181 //
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // for inlines see jvmtiEventController_inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
183 //
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 class JvmtiEventController : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
187 friend class JvmtiEventControllerPrivate;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // for all environments, global array indexed by jvmtiEvent
a61af66fc99e Initial load
duke
parents:
diff changeset
190 static JvmtiEventEnabled _universal_global_event_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
193 static bool is_enabled(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // events that can ONLY be enabled/disabled globally (can't toggle on individual threads).
a61af66fc99e Initial load
duke
parents:
diff changeset
196 static bool is_global_event(jvmtiEvent event_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // is the event_type valid?
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // to do: check against valid event array
a61af66fc99e Initial load
duke
parents:
diff changeset
200 static bool is_valid_event_type(jvmtiEvent event_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 return ((int)event_type >= TOTAL_MIN_EVENT_TYPE_VAL)
a61af66fc99e Initial load
duke
parents:
diff changeset
202 && ((int)event_type <= TOTAL_MAX_EVENT_TYPE_VAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Use (thread == NULL) to enable/disable an event globally.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // Use (thread != NULL) to enable/disable an event for a particular thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // thread is ignored for events that can only be specified globally
a61af66fc99e Initial load
duke
parents:
diff changeset
208 static void set_user_enabled(JvmtiEnvBase *env, JavaThread *thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 jvmtiEvent event_type, bool enabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Setting callbacks changes computed enablement and must be done
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // at a safepoint otherwise a NULL callback could be attempted
a61af66fc99e Initial load
duke
parents:
diff changeset
213 static void set_event_callbacks(JvmtiEnvBase *env,
a61af66fc99e Initial load
duke
parents:
diff changeset
214 const jvmtiEventCallbacks* callbacks,
a61af66fc99e Initial load
duke
parents:
diff changeset
215 jint size_of_callbacks);
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // Sets the callback function for a single extension event and enables
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // (or disables it).
a61af66fc99e Initial load
duke
parents:
diff changeset
219 static void set_extension_event_callback(JvmtiEnvBase* env,
a61af66fc99e Initial load
duke
parents:
diff changeset
220 jint extension_event_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
221 jvmtiExtensionEvent callback);
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 static void set_frame_pop(JvmtiEnvThreadState *env_thread, JvmtiFramePop fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 static void clear_frame_pop(JvmtiEnvThreadState *env_thread, JvmtiFramePop fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 static void clear_to_frame_pop(JvmtiEnvThreadState *env_thread, JvmtiFramePop fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 static void change_field_watch(jvmtiEvent event_type, bool added);
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 static void thread_started(JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 static void thread_ended(JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 static void env_initialize(JvmtiEnvBase *env);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 static void env_dispose(JvmtiEnvBase *env);
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 static void vm_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
236 static void vm_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
237 static void vm_death();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 };
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 #endif /* _JAVA_JVMTI_EVENT_CONTROLLER_H_ */