diff options
author | mtm <mtm@FreeBSD.org> | 2003-07-06 10:18:48 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-07-06 10:18:48 +0000 |
commit | 2ced154094b1ba76e51108eff45803f60f6731ce (patch) | |
tree | 314e5a3ea0c37ba2ab164337eae32bb02e9f5383 /lib/libthr/thread/thr_detach.c | |
parent | d4808894e4846559ec5d35948da89927a1034b33 (diff) | |
download | FreeBSD-src-2ced154094b1ba76e51108eff45803f60f6731ce.zip FreeBSD-src-2ced154094b1ba76e51108eff45803f60f6731ce.tar.gz |
Change all instances of THR_LOCK/UNLOCK, etc to UMTX_*.
It is a more acurate description of the locks they
operate on.
Diffstat (limited to 'lib/libthr/thread/thr_detach.c')
-rw-r--r-- | lib/libthr/thread/thr_detach.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libthr/thread/thr_detach.c b/lib/libthr/thread/thr_detach.c index 6161e86..a2ad4d4 100644 --- a/lib/libthr/thread/thr_detach.c +++ b/lib/libthr/thread/thr_detach.c @@ -44,10 +44,10 @@ _pthread_detach(pthread_t pthread) if (pthread == NULL || pthread->magic != PTHREAD_MAGIC) return (EINVAL); - THR_LOCK(&pthread->lock); + UMTX_LOCK(&pthread->lock); if (pthread->attr.flags & PTHREAD_DETACHED) { - THR_UNLOCK(&pthread->lock); + UMTX_UNLOCK(&pthread->lock); return (EINVAL); } @@ -73,7 +73,7 @@ _pthread_detach(pthread_t pthread) _thread_critical_exit(joiner); } - THR_UNLOCK(&pthread->lock); + UMTX_UNLOCK(&pthread->lock); return (0); } |