diff options
Diffstat (limited to 'src/pkg/runtime/freebsd/thread.c')
-rw-r--r-- | src/pkg/runtime/freebsd/thread.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pkg/runtime/freebsd/thread.c b/src/pkg/runtime/freebsd/thread.c index bf891e980..19c14c5ab 100644 --- a/src/pkg/runtime/freebsd/thread.c +++ b/src/pkg/runtime/freebsd/thread.c @@ -99,6 +99,11 @@ unlock(Lock *l) umtx_unlock(l); } +void +destroylock(Lock *l) +{ +} + // Event notifications. void noteclear(Note *n) |