aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog5
-rw-r--r--linuxthreads/manager.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 54d7e425ac..1fbaa1c793 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-11 Steven Munroe <sjmunroe@us.ibm.com>
+
+ * manager.c (pthread_start_thread) [!(USE_TLS && HAVE___THREAD)]:
+ Correct spelling of per thread resolver state.
+
2003-08-07 Jakub Jelinek <jakub@redhat.com>
* sysdeps/pthread/bits/libc-lock.h [_LIBC && SHARED]
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c
index 9620b8b39c..f8647b47ca 100644
--- a/linuxthreads/manager.c
+++ b/linuxthreads/manager.c
@@ -290,7 +290,7 @@ pthread_start_thread(void *arg)
__uselocale (LC_GLOBAL_LOCALE);
#else
/* Initialize __resp. */
- __resp = &self->p_resp;
+ __resp = &self->p_res;
#endif
/* Make gdb aware of new thread */
if (__pthread_threads_debug && __pthread_sig_debug > 0) {