diff options
-rw-r--r-- | src/libthread/FreeBSD.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libthread/FreeBSD.c b/src/libthread/FreeBSD.c index df5bdb96..46c1b05f 100644 --- a/src/libthread/FreeBSD.c +++ b/src/libthread/FreeBSD.c @@ -131,6 +131,14 @@ _procwakeup(_Procrendez *r) } } +void +_procwakeupandunlock(_Procrendez *r) +{ + _procwakeup(r); + unlock(r->l); +} + + /* * process creation and exit */ |