kern: non-loop cas-weak -> cas-strong

This commit is contained in:
Michael Scire 2020-08-13 13:55:19 -07:00 committed by SciresM
parent 717265a54c
commit f77a4fbf98

View file

@ -282,7 +282,7 @@ namespace ams::kern {
/* Atomically clear the previous thread if it's our target. */
KThread *compare = thread;
prev_thread.compare_exchange_weak(compare, nullptr);
prev_thread.compare_exchange_strong(compare, nullptr);
}
}