1
1
/*
2
- * Copyright (c) 2002, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2002, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -56,9 +56,6 @@ public final class Perf {
56
56
57
57
private static Perf instance ;
58
58
59
- private static final int PERF_MODE_RO = 0 ;
60
- private static final int PERF_MODE_RW = 1 ;
61
-
62
59
private Perf () { } // prevent instantiation
63
60
64
61
/**
@@ -171,50 +168,28 @@ public static Perf getPerf()
171
168
* for the Java virtual machine running this method, then the returned
172
169
* <code>ByteBuffer</code> object will always be coherent and dynamically
173
170
* changing.
174
- * <p>
175
- * The attach mode specifies the access permissions requested for the
176
- * instrumentation buffer of the target virtual machine. The permitted
177
- * access permissions are:
178
- * <ul>
179
- * <li>"r" - Read only access. This Java virtual machine has only
180
- * read access to the instrumentation buffer for the target Java
181
- * virtual machine.
182
- * <li>"rw" - Read/Write access. This Java virtual machine has read and
183
- * write access to the instrumentation buffer for the target Java virtual
184
- * machine. This mode is currently not supported and is reserved for
185
- * future enhancements.
186
- * </ul>
187
171
*
188
172
* @param lvmid an integer that uniquely identifies the
189
173
* target local Java virtual machine.
190
- * @param mode a string indicating the attach mode.
191
174
* @return ByteBuffer a direct allocated byte buffer
192
- * @throws IllegalArgumentException The lvmid or mode was invalid.
175
+ * @throws IllegalArgumentException The lvmid was invalid.
193
176
* @throws IOException An I/O error occurred while trying to acquire
194
177
* the instrumentation buffer.
195
178
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
196
179
* into the virtual machine's address space.
197
180
* @see java.nio.ByteBuffer
198
181
*/
199
- public ByteBuffer attach (int lvmid , String mode )
182
+ public ByteBuffer attach (int lvmid )
200
183
throws IllegalArgumentException , IOException
201
184
{
202
- if (mode .compareTo ("r" ) == 0 ) {
203
- return attachImpl (null , lvmid , PERF_MODE_RO );
204
- }
205
- else if (mode .compareTo ("rw" ) == 0 ) {
206
- return attachImpl (null , lvmid , PERF_MODE_RW );
207
- }
208
- else {
209
- throw new IllegalArgumentException ("unknown mode" );
210
- }
185
+ return attachImpl (null , lvmid );
211
186
}
212
187
213
188
/**
214
189
* Attach to the instrumentation buffer for the specified Java virtual
215
190
* machine owned by the given user.
216
191
* <p>
217
- * This method behaves just as the <code>attach(int lvmid, String mode )
192
+ * This method behaves just as the <code>attach(int lvmid)
218
193
* </code> method, except that it only searches for Java virtual machines
219
194
* owned by the specified user.
220
195
*
@@ -223,27 +198,18 @@ else if (mode.compareTo("rw") == 0) {
223
198
* virtual machine.
224
199
* @param lvmid an integer that uniquely identifies the
225
200
* target local Java virtual machine.
226
- * @param mode a string indicating the attach mode.
227
201
* @return ByteBuffer a direct allocated byte buffer
228
- * @throws IllegalArgumentException The lvmid or mode was invalid.
202
+ * @throws IllegalArgumentException The lvmid was invalid.
229
203
* @throws IOException An I/O error occurred while trying to acquire
230
204
* the instrumentation buffer.
231
205
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
232
206
* into the virtual machine's address space.
233
207
* @see java.nio.ByteBuffer
234
208
*/
235
- public ByteBuffer attach (String user , int lvmid , String mode )
209
+ public ByteBuffer attach (String user , int lvmid )
236
210
throws IllegalArgumentException , IOException
237
211
{
238
- if (mode .compareTo ("r" ) == 0 ) {
239
- return attachImpl (user , lvmid , PERF_MODE_RO );
240
- }
241
- else if (mode .compareTo ("rw" ) == 0 ) {
242
- return attachImpl (user , lvmid , PERF_MODE_RW );
243
- }
244
- else {
245
- throw new IllegalArgumentException ("unknown mode" );
246
- }
212
+ return attachImpl (user , lvmid );
247
213
}
248
214
249
215
/**
@@ -259,18 +225,17 @@ else if (mode.compareTo("rw") == 0) {
259
225
* virtual machine.
260
226
* @param lvmid an integer that uniquely identifies the
261
227
* target local Java virtual machine.
262
- * @param mode a string indicating the attach mode.
263
228
* @return ByteBuffer a direct allocated byte buffer
264
- * @throws IllegalArgumentException The lvmid or mode was invalid.
229
+ * @throws IllegalArgumentException The lvmid was invalid.
265
230
* @throws IOException An I/O error occurred while trying to acquire
266
231
* the instrumentation buffer.
267
232
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
268
233
* into the virtual machine's address space.
269
234
*/
270
- private ByteBuffer attachImpl (String user , int lvmid , int mode )
235
+ private ByteBuffer attachImpl (String user , int lvmid )
271
236
throws IllegalArgumentException , IOException
272
237
{
273
- final ByteBuffer b = attach (user , lvmid , mode );
238
+ final ByteBuffer b = attach0 (user , lvmid );
274
239
275
240
if (lvmid == 0 ) {
276
241
// The native instrumentation buffer for this Java virtual
@@ -326,15 +291,14 @@ public void run() {
326
291
* virtual machine.
327
292
* @param lvmid an integer that uniquely identifies the
328
293
* target local Java virtual machine.
329
- * @param mode a string indicating the attach mode.
330
294
* @return ByteBuffer a direct allocated byte buffer
331
- * @throws IllegalArgumentException The lvmid or mode was invalid.
295
+ * @throws IllegalArgumentException The lvmid was invalid.
332
296
* @throws IOException An I/O error occurred while trying to acquire
333
297
* the instrumentation buffer.
334
298
* @throws OutOfMemoryError The instrumentation buffer could not be mapped
335
299
* into the virtual machine's address space.
336
300
*/
337
- private native ByteBuffer attach (String user , int lvmid , int mode )
301
+ private native ByteBuffer attach0 (String user , int lvmid )
338
302
throws IllegalArgumentException , IOException ;
339
303
340
304
/**
0 commit comments