File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,6 @@ def get_thread_with_max_stack_size(thread_stack_info):
575
575
reserved_stack_total += cur_thread_stack_info ['stack_size' ]
576
576
max_thread ['max_stack_usage_total' ] = max_stack_usage_total
577
577
max_thread ['reserved_stack_total' ] = reserved_stack_total
578
- max_thread ['reserved_stack_total' ] = reserved_stack_total
579
578
return max_thread
580
579
581
580
def get_thread_stack_info_summary (thread_stack_info ):
@@ -584,7 +583,7 @@ def get_thread_stack_info_summary(thread_stack_info):
584
583
summary = {
585
584
'max_stack_size' : max_thread_info ['stack_size' ],
586
585
'max_stack_usage' : max_thread_info ['max_stack' ],
587
- 'max_stack_usage_total' : max_thread_info ['max_stack_usage_total' ]
586
+ 'max_stack_usage_total' : max_thread_info ['max_stack_usage_total' ],
588
587
'reserved_stack_total' : max_thread_info ['reserved_stack_total' ]
589
588
}
590
589
return summary
You can’t perform that action at this time.
0 commit comments