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

This commit is contained in:
Michael Scire 2020-08-13 13:55:19 -07:00
parent 82ae603e0f
commit 58cf0f17f0

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);
}
}