mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-05 12:40:55 +08:00
Update.
2002-02-09 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/dl-tls.c (_dl_allocate_tls): Correctly terminate loop to initial TLS block. * csu/version.c (banner): If TLS support is available say so.
This commit is contained in:
parent
974ac3d678
commit
3065b0c799
@ -1,3 +1,8 @@
|
||||
2002-02-09 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/generic/dl-tls.c (_dl_allocate_tls): Correctly terminate
|
||||
loop to initial TLS block.
|
||||
|
||||
2002-02-08 Richard Henderson <rth@twiddle.net>
|
||||
|
||||
* sysdeps/generic/ldsodefs.h (struct rtld_global): Also include
|
||||
@ -27,7 +32,7 @@
|
||||
|
||||
* configure.in: Test for __builtin_memset more realistically.
|
||||
|
||||
* csu/version.c (banner): If TLS support available say so.
|
||||
* csu/version.c (banner): If TLS support is available say so.
|
||||
|
||||
2002-02-04 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
|
@ -217,7 +217,8 @@ _dl_allocate_tls (void)
|
||||
'\0',
|
||||
runp->l_tls_blocksize - runp->l_tls_initimage_size);
|
||||
}
|
||||
while ((runp = runp->l_tls_nextimage) != NULL);
|
||||
while ((runp = runp->l_tls_nextimage)
|
||||
!= GL(dl_initimage_list)->l_tls_nextimage);
|
||||
}
|
||||
|
||||
/* Add the dtv to the thread data structures. */
|
||||
|
Loading…
Reference in New Issue
Block a user