Remove functions i386_get_gsbase and i386_set_gsbase, they were already

in libc.
This commit is contained in:
David Xu 2006-01-07 06:01:43 +00:00
parent e1e05d5d12
commit d827aa478d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154095

View file

@ -58,17 +58,3 @@ _tcb_dtor(struct tcb *tcb)
_rtld_free_tls(tcb, sizeof(struct tcb), 16);
}
int
i386_get_gsbase(void **addr)
{
return (sysarch(I386_GET_GSBASE, addr));
}
int
i386_set_gsbase(void *addr)
{
return (sysarch(I386_SET_GSBASE, &addr));
}