File tree 1 file changed +2
-4
lines changed
src/hotspot/share/jfr/jni
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 33
33
#include " memory/resourceArea.hpp"
34
34
#include " runtime/handles.inline.hpp"
35
35
#include " runtime/mutexLocker.hpp"
36
- #include " runtime/safepoint.hpp"
37
36
#include " runtime/thread.inline.hpp"
38
37
#include " utilities/growableArray.hpp"
39
38
#include " utilities/stack.inline.hpp"
40
39
41
- // incremented during class unloading (safepoint) for each unloaded event class
40
+ // incremented during class unloading for each unloaded event class
42
41
static jlong unloaded_event_classes = 0 ;
43
42
44
43
jlong JfrEventClasses::unloaded_event_classes_count () {
45
44
return unloaded_event_classes;
46
45
}
47
46
48
47
void JfrEventClasses::increment_unloaded_event_class () {
49
- // incremented during class unloading (safepoint) for each unloaded event class
50
- assert (SafepointSynchronize::is_at_safepoint (), " invariant" );
48
+ assert_locked_or_safepoint (ClassLoaderDataGraph_lock);
51
49
++unloaded_event_classes;
52
50
}
53
51
You can’t perform that action at this time.
0 commit comments