From 9fdc368a9c0e3537711656f9d3eab28cc5a6db9d Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 23 Oct 2003 06:12:57 +0000 Subject: Use amd64_set_fsbase() instead of calling sysarch() directly. --- lib/libkse/arch/amd64/include/pthread_md.h | 7 +------ lib/libpthread/arch/amd64/include/pthread_md.h | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) (limited to 'lib') diff --git a/lib/libkse/arch/amd64/include/pthread_md.h b/lib/libkse/arch/amd64/include/pthread_md.h index b0bde5a..b6f05a8 100644 --- a/lib/libkse/arch/amd64/include/pthread_md.h +++ b/lib/libkse/arch/amd64/include/pthread_md.h @@ -37,9 +37,6 @@ #include #include -/* 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. */ diff --git a/lib/libpthread/arch/amd64/include/pthread_md.h b/lib/libpthread/arch/amd64/include/pthread_md.h index b0bde5a..b6f05a8 100644 --- a/lib/libpthread/arch/amd64/include/pthread_md.h +++ b/lib/libpthread/arch/amd64/include/pthread_md.h @@ -37,9 +37,6 @@ #include #include -/* 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. */ -- cgit v1.1