diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2003-10-23 06:12:57 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2003-10-23 06:12:57 +0000 |
| commit | d1a499ad2a9d3a5e385a40d41e884e3e7c03abed (patch) | |
| tree | 29b2b857ce884f0caa7dc8ba048e14b48587121a /lib/libpthread | |
| parent | 1f98bf53d9cdd2af9a9b90c6e407c7d01aa7e359 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread')
| -rw-r--r-- | lib/libpthread/arch/amd64/include/pthread_md.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libpthread/arch/amd64/include/pthread_md.h b/lib/libpthread/arch/amd64/include/pthread_md.h index b0bde5a9b072..b6f05a83a1e9 100644 --- a/lib/libpthread/arch/amd64/include/pthread_md.h +++ b/lib/libpthread/arch/amd64/include/pthread_md.h @@ -37,9 +37,6 @@ #include <machine/sysarch.h> #include <ucontext.h> -/* <machine/sysarch.h> should define this, but doesn't. */ -extern int sysarch(int, void *); - #define KSE_STACKSIZE 16384 #define THR_GETCONTEXT(ucp) \ @@ -151,9 +148,7 @@ void _kcb_dtor(struct kcb *); static __inline void _kcb_set(struct kcb *kcb) { - void *addr = kcb; - - sysarch(AMD64_SET_FSBASE, &addr); + amd64_set_fsbase(kcb); } /* Get the current kcb. */ |
