mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
fix futex error handling
This commit is contained in:
@@ -562,6 +562,7 @@ gb_internal void tpool_wake_addr(Futex *addr) {
|
|||||||
if (ret >= 0) {
|
if (ret >= 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
ret = -ret;
|
||||||
if (ret == EINTR || ret == EFAULT) {
|
if (ret == EINTR || ret == EFAULT) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -581,6 +582,7 @@ gb_internal void tpool_wait_on_addr(Futex *addr, Footex val) {
|
|||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
ret = -ret;
|
||||||
if (ret == EINTR || ret == EFAULT) {
|
if (ret == EINTR || ret == EFAULT) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user