diff options
Diffstat (limited to 'runtime/openjdkjvmti/events.h')
| -rw-r--r-- | runtime/openjdkjvmti/events.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/openjdkjvmti/events.h b/runtime/openjdkjvmti/events.h index 3212b12a54..07d6bfd4c2 100644 --- a/runtime/openjdkjvmti/events.h +++ b/runtime/openjdkjvmti/events.h @@ -28,6 +28,7 @@ namespace openjdkjvmti { struct ArtJvmTiEnv; class JvmtiAllocationListener; +class JvmtiGcPauseListener; struct EventMask { static constexpr size_t kEventsSize = JVMTI_MAX_EVENT_TYPE_VAL - JVMTI_MIN_EVENT_TYPE_VAL + 1; @@ -103,6 +104,7 @@ class EventHandler { EventMask global_mask; std::unique_ptr<JvmtiAllocationListener> alloc_listener_; + std::unique_ptr<JvmtiGcPauseListener> gc_pause_listener_; }; } // namespace openjdkjvmti |