Add calls to stop and wait for a debugger (#916)

Co-authored-by: Benjamin Welton <ben@amd.com>

[ROCm/rocprofiler-sdk commit: 45e165b256]
This commit is contained in:
Benjamin Welton
2024-06-07 13:04:52 -07:00
committed by GitHub
parent f8dd1369f9
commit 1cbb4bcd94
2 changed files with 33 additions and 0 deletions
@@ -123,3 +123,29 @@ read_command_line(pid_t _pid)
}
} // namespace common
} // namespace rocprofiler
namespace
{
std::atomic<bool>&
debugger_block()
{
static std::atomic<bool> block = {true};
return block;
}
} // namespace
extern "C" {
void
rocprofiler_debugger_block()
{
while(debugger_block().load() == true)
{};
// debugger_block().exchange(true);
}
void
rocprofiler_debugger_continue()
{
debugger_block().exchange(false);
}
}