File tree 1 file changed +5
-2
lines changed
src/hotspot/share/runtime
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -989,13 +989,16 @@ void SafepointTracing::end() {
989
989
" Reaching safepoint: " JLONG_FORMAT " ns, "
990
990
" At safepoint: " JLONG_FORMAT " ns, "
991
991
" Leaving safepoint: " JLONG_FORMAT " ns, "
992
- " Total: " JLONG_FORMAT " ns" ,
992
+ " Total: " JLONG_FORMAT " ns, "
993
+ " Threads: %d runnable, %d total" ,
993
994
VM_Operation::name (_current_type),
994
995
_last_app_time_ns,
995
996
_last_safepoint_sync_time_ns - _last_safepoint_begin_time_ns,
996
997
_last_safepoint_leave_time_ns - _last_safepoint_sync_time_ns,
997
998
_last_safepoint_end_time_ns - _last_safepoint_leave_time_ns,
998
- _last_safepoint_end_time_ns - _last_safepoint_begin_time_ns
999
+ _last_safepoint_end_time_ns - _last_safepoint_begin_time_ns,
1000
+ _nof_running,
1001
+ _nof_threads
999
1002
);
1000
1003
1001
1004
RuntimeService::record_safepoint_end (_last_safepoint_end_time_ns - _last_safepoint_sync_time_ns);
You can’t perform that action at this time.
0 commit comments