summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/nt32/dynlink.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-01-31 19:56:08 +0000
committermidipix <writeonce@midipix.org>2019-02-19 14:47:45 -0500
commit07b6814a07b3c94bf8b4ba2e2a906175fbf89ffd (patch)
treefb774568c51f184786ea100e58cd9d765b82bcf5 /src/ldso/nt32/dynlink.c
parentca29c23790ef87220b2f74cb6c77d4f40f9cd5b8 (diff)
downloadmmglue-07b6814a07b3c94bf8b4ba2e2a906175fbf89ffd.tar.bz2
mmglue-07b6814a07b3c94bf8b4ba2e2a906175fbf89ffd.tar.xz
psxglue.h: update struct __ldso_vtbl (psxscl) to match member names in psxscl.
tls: place __copy_tls() and __reset_tls() in designated translation units.
Diffstat (limited to 'src/ldso/nt32/dynlink.c')
-rw-r--r--src/ldso/nt32/dynlink.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/ldso/nt32/dynlink.c b/src/ldso/nt32/dynlink.c
index 6a4f4df..a585fbb 100644
--- a/src/ldso/nt32/dynlink.c
+++ b/src/ldso/nt32/dynlink.c
@@ -131,33 +131,6 @@ char * dlerror(void)
return __ldso_vtbl->dlerror();
}
-void __reset_tls(void)
-{
- __ldso_vtbl->reset_tls();
-}
-
-void *__copy_tls(unsigned char * mem)
-{
- /**
- * this is always the simple case, since:
- * emutls is based on PE named sections; and
- * tls allocation and initialization are handled by clone(2)
- **/
-
- pthread_t td;
- uintptr_t addr;
-
- addr = (uintptr_t)mem;
- addr >>= 4;
- addr <<= 4;
- addr += 16;
-
- td = (struct __pthread *)addr;
- td->dtv = 0;
-
- return td;
-}
-
weak_alias(__dlsym,dlsym);
weak_alias(__dladdr,dladdr);
weak_alias(__dlinfo,dlinfo);