We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d2458d commit f527289Copy full SHA for f527289
src/hotspot/share/services/heapDumper.cpp
@@ -1862,7 +1862,10 @@ void VM_HeapDumper::dump_stack_traces() {
1862
oop threadObj = thread->threadObj();
1863
if (threadObj != NULL && !thread->is_exiting() && !thread->is_hidden_from_external_view()) {
1864
// dump thread stack trace
1865
- ResourceMark rm;
+ Thread* current_thread = Thread::current();
1866
+ ResourceMark rm(current_thread);
1867
+ HandleMark hm(current_thread);
1868
+
1869
ThreadStackTrace* stack_trace = new ThreadStackTrace(thread, false);
1870
stack_trace->dump_stack_at_safepoint(-1);
1871
_stack_traces[_num_threads++] = stack_trace;
0 commit comments