fix futex error handling

This commit is contained in:
Colin Davidson
2023-01-05 01:27:37 -08:00
parent 782f1b4718
commit a58650728e
+2
View File
@@ -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;
} }