diff options
author | rsc <devnull@localhost> | 2005-01-14 17:56:21 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-14 17:56:21 +0000 |
commit | 4a8edd8d410a465d34027d706f1c8df2ee6a0c17 (patch) | |
tree | a26df26a5376af683f715c8cd6ea21e51ba629fa | |
parent | 5ba56e9139188cc747690851f73e0f4c2e20bf14 (diff) | |
download | plan9port-4a8edd8d410a465d34027d706f1c8df2ee6a0c17.tar.gz plan9port-4a8edd8d410a465d34027d706f1c8df2ee6a0c17.tar.bz2 plan9port-4a8edd8d410a465d34027d706f1c8df2ee6a0c17.zip |
add procwakeupandunlock
-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 */ |