From 7f75cc45e943577f1bfd1324bb39e212b9531d54 Mon Sep 17 00:00:00 2001 From: mtm Date: Sun, 29 Jun 2003 23:51:04 +0000 Subject: Sweep through pthread locking and use the new locking primitives for libthr. --- lib/libthr/thread/thr_kern.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libthr/thread/thr_kern.c') 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(); } -- cgit v1.1