Rename futex_wake and futex_wake_all to futex_signal and futex_broadcast

This commit is contained in:
gingerBill
2021-10-11 16:40:23 +01:00
parent 46b33854c9
commit d97c6a7657
6 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ when #config(ODIN_SYNC_RECURSIVE_MUTEX_USE_FUTEX, true) {
}
atomic_exchange_release(&m.impl.owner, 0)
futex_wake_single(&m.impl.owner)
futex_signal(&m.impl.owner)
// outside the lock
}