Skip to content

Commit cebc2be

Browse files
author
Markus Grönlund
committedNov 25, 2019
8234433: TestUnloadEventClassCount fails with "assert(SafepointSynchronize::is_at_safepoint()) failed: invariant"
Reviewed-by: pliden
1 parent 6eedae0 commit cebc2be

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎src/hotspot/share/jfr/jni/jfrGetAllEventClasses.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,19 @@
3333
#include "memory/resourceArea.hpp"
3434
#include "runtime/handles.inline.hpp"
3535
#include "runtime/mutexLocker.hpp"
36-
#include "runtime/safepoint.hpp"
3736
#include "runtime/thread.inline.hpp"
3837
#include "utilities/growableArray.hpp"
3938
#include "utilities/stack.inline.hpp"
4039

41-
// incremented during class unloading (safepoint) for each unloaded event class
40+
// incremented during class unloading for each unloaded event class
4241
static jlong unloaded_event_classes = 0;
4342

4443
jlong JfrEventClasses::unloaded_event_classes_count() {
4544
return unloaded_event_classes;
4645
}
4746

4847
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);
5149
++unloaded_event_classes;
5250
}
5351

0 commit comments

Comments
 (0)
Please sign in to comment.