diff options
author | mtm <mtm@FreeBSD.org> | 2003-06-29 23:51:04 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-06-29 23:51:04 +0000 |
commit | 7f75cc45e943577f1bfd1324bb39e212b9531d54 (patch) | |
tree | e9bf941cb7bc23c1c5b2341a239af1a9b41cf044 /lib/libthr/thread/thr_kern.c | |
parent | 39a4899732da552e6e0de76201566ee295c841fc (diff) | |
download | FreeBSD-src-7f75cc45e943577f1bfd1324bb39e212b9531d54.zip FreeBSD-src-7f75cc45e943577f1bfd1324bb39e212b9531d54.tar.gz |
Sweep through pthread locking and use the new locking primitives for
libthr.
Diffstat (limited to 'lib/libthr/thread/thr_kern.c')
-rw-r--r-- | lib/libthr/thread/thr_kern.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_kern.c b/lib/libthr/thread/thr_kern.c index 4a60bfe..481cc83 100644 --- a/lib/libthr/thread/thr_kern.c +++ b/lib/libthr/thread/thr_kern.c @@ -56,13 +56,13 @@ void _thread_critical_enter(pthread_t pthread) { _thread_sigblock(); - _SPINLOCK(&pthread->lock); + THR_LOCK(&pthread->lock); } void _thread_critical_exit(pthread_t pthread) { - _SPINUNLOCK(&pthread->lock); + THR_UNLOCK(&pthread->lock); _thread_sigunblock(); } |