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

Co-authored-by: Benjamin Welton <ben@amd.com>
This commit is contained in:
Benjamin Welton
2024-06-07 13:04:52 -07:00
committed by GitHub
parent 680448c444
commit 45e165b256
2 changed files with 33 additions and 0 deletions
+26
View File
@@ -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);
}
}
+7
View File
@@ -265,3 +265,10 @@ yield(PredicateT&& predicate,
}
} // namespace common
} // namespace rocprofiler
extern "C" {
void
rocprofiler_debugger_block();
void
rocprofiler_debugger_continue();
}