diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-20 10:18:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-20 10:18:12 +0000 |
commit | c5acd3d77e9fc3abef96a5ca6b745eb53789bbde (patch) | |
tree | 5783980ce504598c1d17486e8a87859c4e021d7e | |
parent | 12fd3c5f66b94059852514207952ddb682d03eb0 (diff) | |
download | glibc-c5acd3d77e9fc3abef96a5ca6b745eb53789bbde.tar.gz glibc-c5acd3d77e9fc3abef96a5ca6b745eb53789bbde.tar.xz glibc-c5acd3d77e9fc3abef96a5ca6b745eb53789bbde.zip |
Update.
* pthread_create.c (deallocate_tsd): Reset found_nonzero at the beginning of the loop. Clear the entire first block of TSD.
-rw-r--r-- | nptl/Banner | 2 | ||||
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/pthread_create.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/nptl/Banner b/nptl/Banner index ae12e7c142..29d93d64df 100644 --- a/nptl/Banner +++ b/nptl/Banner @@ -1 +1 @@ -NPTL 0.23 by Ulrich Drepper +NPTL 0.24 by Ulrich Drepper diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 5cbc766398..f650542dbf 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,7 +1,7 @@ 2003-02-20 Ulrich Drepper <drepper@redhat.com> - * pthread_create.c (deallocate_tsd): Clear the entire first block - of TSD. + * pthread_create.c (deallocate_tsd): Reset found_nonzero at the + beginning of the loop. Clear the entire first block of TSD. * Makefile (tests): Add tst-key4. * tst-key4.c: New file. diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 89152ffeb9..bac7455af8 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -124,6 +124,9 @@ deallocate_tsd (struct pthread *pd) size_t cnt; size_t idx; + /* So far no new nonzero data entry. */ + found_nonzero = false; + for (cnt = idx = 0; cnt < PTHREAD_KEY_1STLEVEL_SIZE; ++cnt) if (pd->specific[cnt] != NULL) { |