mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 02:52:44 +02:00
kern: adjust wording to be more technically correct
This commit is contained in:
parent
b1607dc8a3
commit
c1e9ba08dc
@ -79,7 +79,7 @@ namespace ams::kern {
|
||||
}
|
||||
|
||||
ALWAYS_INLINE bool Close() {
|
||||
/* Atomically decrement the reference count, not allowing it to become negative. */
|
||||
/* Atomically decrement the reference count, not allowing it to decrement past zero. */
|
||||
u32 cur = m_value.Load<std::memory_order_relaxed>();
|
||||
do {
|
||||
MESOSPHERE_ABORT_UNLESS(cur > 0);
|
||||
|
Loading…
Reference in New Issue
Block a user