Skip to content

Commit

Permalink
review: fixed a typo in new comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sspitsyn committed Jan 11, 2025
1 parent 4652731 commit a85b598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/javaThread.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ class JavaThread: public Thread {
bool VTMS_transition_mark() const { return Atomic::load(&_VTMS_transition_mark); }
void set_VTMS_transition_mark(bool val) { Atomic::store(&_VTMS_transition_mark, val); }

// Temporarily skip posting JVMTI events for safety reasons when executions is in ia critical section:
// Temporarily skip posting JVMTI events for safety reasons when executions is in a critical section:
// - is in a VTMS transition (_is_in_VTMS_transition)
// - is in an interruptLock or similar critical section (_is_disable_suspend)
bool should_hide_jvmti_events() const { return _is_in_VTMS_transition || _is_disable_suspend; }
Expand Down

0 comments on commit a85b598

Please sign in to comment.