diff options
| author | David Xu <davidxu@FreeBSD.org> | 2005-02-26 10:39:49 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2005-02-26 10:39:49 +0000 |
| commit | 17ceb495f082edc69dbbcc76e250be4fbb667be7 (patch) | |
| tree | aaae7b04cdd4cf4536572e74e4e64906ec085c5f /lib | |
| parent | 5c1f0f6de572dfcd5b154445dd14d6108ca54f46 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/gen/tls.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libc/gen/tls.c b/lib/libc/gen/tls.c index 703bfef8fbff..1fdfc9435565 100644 --- a/lib/libc/gen/tls.c +++ b/lib/libc/gen/tls.c @@ -86,6 +86,10 @@ __tls_get_addr() #ifdef TLS_VARIANT_I +#pragma weak _rtld_free_tls +/* + * Free Static TLS using the Variant II method. + */ void _rtld_free_tls(void *tls, size_t tcbsize, size_t tcbalign) { @@ -98,6 +102,7 @@ _rtld_free_tls(void *tls, size_t tcbsize, size_t tcbalign) #endif } +#pragma weak _rtld_allocate_tls /* * Allocate Static TLS using the Variant I method. */ |
