diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-10 22:43:01 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-10 22:43:01 -0400 |
commit | e6c61494125126d2ba77e5d99f83887a2ed49783 (patch) | |
tree | 1e1b67f306fd7acb967f9d9df32a0296f2ad9d79 /sysdeps/s390 | |
parent | c6489db3bdd6e484edcb34884955110612966997 (diff) | |
download | glibc-e6c61494125126d2ba77e5d99f83887a2ed49783.zip glibc-e6c61494125126d2ba77e5d99f83887a2ed49783.tar.gz glibc-e6c61494125126d2ba77e5d99f83887a2ed49783.tar.bz2 |
Fix memory leak in TLS of loaded objects.
Diffstat (limited to 'sysdeps/s390')
-rw-r--r-- | sysdeps/s390/dl-tls.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/s390/dl-tls.h b/sysdeps/s390/dl-tls.h index 0560462..7295abc 100644 --- a/sysdeps/s390/dl-tls.h +++ b/sysdeps/s390/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. s390 version. - Copyright (C) 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -72,6 +72,9 @@ __tls_get_offset:\n\ # define __TLS_GET_ADDR(__ti) \ ({ extern char _GLOBAL_OFFSET_TABLE_[] attribute_hidden; \ (void *) __tls_get_offset ((char *) (__ti) - _GLOBAL_OFFSET_TABLE_) \ - + (unsigned long) __builtin_thread_pointer (); }) + + (unsigned long) __builtin_thread_pointer (); }) #endif + +/* Value used for dtv entries for which the allocation is delayed. */ +#define TLS_DTV_UNALLOCATED ((void *) -1l) |