this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ulock_wake: Correct return value on success

Callers expect `0` on success; we were returning Linux's return value (the number of callers awoken)

+3
+3
src/kernel/emulation/linux/psynch/ulock_wake.c
··· 39 39 ret = errno_linux_to_bsd(ret); 40 40 if (no_errno) 41 41 ret &= ~0x800; 42 + } else { 43 + // callers of ulock_wake expect it to return 0 on success 44 + ret = 0; 42 45 } 43 46 44 47 return ret;