ams: support building unit test programs on windows/linux/macos

This commit is contained in:
Michael Scire 2022-03-06 12:08:20 -08:00 committed by SciresM
parent 9a38be201a
commit 64a97576d0
756 changed files with 33359 additions and 9372 deletions

View file

@ -181,7 +181,11 @@ namespace ams::dmnt::cheat::impl {
m_unsafe_break_event.Signal();
/* Knock out the debug events thread. */
os::CancelThreadSynchronization(std::addressof(m_debug_events_thread));
{
std::scoped_lock lk(util::GetReference(m_debug_events_thread.cs_thread));
R_ABORT_UNLESS(svc::CancelSynchronization(m_debug_events_thread.thread_impl->handle));
}
/* Close resources. */
R_ABORT_UNLESS(svc::CloseHandle(m_cheat_process_debug_handle));