diff options
author | peter <peter@FreeBSD.org> | 2005-06-29 23:15:36 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2005-06-29 23:15:36 +0000 |
commit | db8830bc2df63d901372f95b64e88e5acca62a62 (patch) | |
tree | 6ecd7b890dad6bb1f8d329ad34bc2693e44ec484 /lib/libc/i386/gen | |
parent | d93999836826da90a255a4a59fa2f6fe8f289425 (diff) | |
download | FreeBSD-src-db8830bc2df63d901372f95b64e88e5acca62a62.zip FreeBSD-src-db8830bc2df63d901372f95b64e88e5acca62a62.tar.gz |
Clean out the leftovers from the i386_set_gsbase() TLS conversion.
Like on libthr, there is an i386_set_gsbase() stub implementation here
to avoid libc.so.5 issues. This should likely be a weak symbol and I
expect this will be fixed soon.
Approved by: re
Diffstat (limited to 'lib/libc/i386/gen')
-rw-r--r-- | lib/libc/i386/gen/_set_tp.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/lib/libc/i386/gen/_set_tp.c b/lib/libc/i386/gen/_set_tp.c index 9b76fa2..110e7e4 100644 --- a/lib/libc/i386/gen/_set_tp.c +++ b/lib/libc/i386/gen/_set_tp.c @@ -28,28 +28,11 @@ #include <string.h> #include <stdint.h> -#include <machine/segments.h> #include <machine/sysarch.h> void _set_tp(void *tp) { - union descriptor ldt; - int error, sel; - error = i386_set_gsbase(tp); - if (error == 0) - return; - memset(&ldt, 0, sizeof(ldt)); - ldt.sd.sd_lolimit = 0xffff; /* 4G limit */ - ldt.sd.sd_lobase = ((uintptr_t)tp) & 0xffffff; - ldt.sd.sd_type = SDT_MEMRWA; - ldt.sd.sd_dpl = SEL_UPL; - ldt.sd.sd_p = 1; /* present */ - ldt.sd.sd_hilimit = 0xf; /* 4G limit */ - ldt.sd.sd_def32 = 1; /* 32 bit */ - ldt.sd.sd_gran = 1; /* limit in pages */ - ldt.sd.sd_hibase = (((uintptr_t)tp) >> 24) & 0xff; - sel = i386_set_ldt(LDT_AUTO_ALLOC, &ldt, 1); - __asm __volatile("movl %0,%%gs" : : "rm" ((sel << 3) | 7)); + i386_set_gsbase(tp); } |