summaryrefslogtreecommitdiffstats
path: root/lib/libthr/arch
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2003-05-23 23:39:31 +0000
committermtm <mtm@FreeBSD.org>2003-05-23 23:39:31 +0000
commit3c92bdad80f3c5a47974bb2498852b95bb93bab5 (patch)
tree1a11ef81d4552811d60feb14870b307d678c5b8c /lib/libthr/arch
parent7cd751dbd6cdde4a9ed12d2ef1578f4ecc3cd934 (diff)
downloadFreeBSD-src-3c92bdad80f3c5a47974bb2498852b95bb93bab5.zip
FreeBSD-src-3c92bdad80f3c5a47974bb2498852b95bb93bab5.tar.gz
Add two functions: _spinlock_pthread() and _spinunlock_pthread()
that take the address of a struct pthread as their first argument. _spin[un]lock() just become wrappers arround these two functions. These new functions are for use in situations where curthread can't be used. One example is _thread_retire(), where we invalidate the array index curthread uses to get its pointer.. Approved by: re/blanket libthr
Diffstat (limited to 'lib/libthr/arch')
-rw-r--r--lib/libthr/arch/i386/i386/_setcurthread.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libthr/arch/i386/i386/_setcurthread.c b/lib/libthr/arch/i386/i386/_setcurthread.c
index 69a5e8f..0483120 100644
--- a/lib/libthr/arch/i386/i386/_setcurthread.c
+++ b/lib/libthr/arch/i386/i386/_setcurthread.c
@@ -75,13 +75,15 @@ ldt_init(void)
void
_retire_thread(void *entry)
{
- _SPINLOCK(&ldt_lock);
+ pthread_t thr = curthread;
+
+ _spinlock_pthread(thr, &ldt_lock);
if (ldt_free == NULL)
*(void **)entry = NULL;
else
*(void **)entry = *ldt_free;
ldt_free = entry;
- _SPINUNLOCK(&ldt_lock);
+ _spinunlock_pthread(thr, &ldt_lock);
}
void *
OpenPOWER on IntegriCloud