diff options
author | 2024-05-22 14:03:12 +0000 | |
---|---|---|
committer | 2024-05-22 14:37:00 +0000 | |
commit | db0551d164783866acf0cdcf9a7741ee6f21f0f2 (patch) | |
tree | e49897e10abe955d3315e48c1095caf71645c85c /test/jvmti-common/Trace.java | |
parent | a11d8246f846148c83bbcbbe39511c460cc0319a (diff) |
Revert "Report method unwind events for native methods"
This reverts commit b42b645e26e206a2b1457cf9ea453b5021a873f5.
Reason for revert: Likely culprit for b/342131895 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.
Change-Id: Ic2724b90528b5a9e299e0df7d909be60d5c1e0eb
Diffstat (limited to 'test/jvmti-common/Trace.java')
-rw-r--r-- | test/jvmti-common/Trace.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/jvmti-common/Trace.java b/test/jvmti-common/Trace.java index 3df1737c91..8999bb1368 100644 --- a/test/jvmti-common/Trace.java +++ b/test/jvmti-common/Trace.java @@ -28,7 +28,6 @@ public class Trace { Method singleStep, Thread thr); public static native void disableTracing(Thread thr); - public static native void nativeEnableFramePopEvents(); public static void enableFieldTracing(Class<?> methodClass, Method fieldAccess, @@ -44,10 +43,6 @@ public class Trace { enableTracing(methodClass, entryMethod, exitMethod, null, null, null, thr); } - public static void enableFramePopEvents() { - nativeEnableFramePopEvents(); - } - public static void enableSingleStepTracing(Class<?> methodClass, Method singleStep, Thread thr) { |