Skip to content

Commit

Permalink
Removing debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Sep 10, 2024
1 parent d48a450 commit dc63546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apex/thread_instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ void thread_instance::clear_current_profiler_untied(profiler * the_profiler,
// nothing to do? This thread has no other running timers.
return;
}
printf("%lu popping %s\n", get_id(), tmp->get_task_id()->get_short_name().c_str());
//printf("%lu popping %s\n", get_id(), tmp->get_task_id()->get_short_name().c_str());
/* Uh-oh! Someone has caused the dreaded "overlapping timer" problem to
* happen! No problem - stop the child timer.
* Keep the children around, along with a reference to the parent's
Expand Down Expand Up @@ -354,7 +354,7 @@ void thread_instance::clear_current_profiler_untied(profiler * the_profiler,
}
// get the new top of the stack
tmp = tmp->prof->untied_parent;
printf("%lu popping? %s\n", get_id(), tmp->get_task_id()->get_short_name().c_str());
//printf("%lu popping? %s\n", get_id(), tmp->get_task_id()->get_short_name().c_str());
}
// done with the stack, allow proper recursion again.
fixing_stack = false;
Expand Down

0 comments on commit dc63546

Please sign in to comment.