summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpj <rpj>1998-10-14 23:45:48 +0000
committerrpj <rpj>1998-10-14 23:45:48 +0000
commit89a4d0ca16686de0a331b6ad85f3fec9b8fec679 (patch)
tree8cecadd81d377d907fd7e1eea869b1bec22d57f5
parentc15534028aca0177a8e4b9257d11d43ff53135df (diff)
Thu Oct 15 14:05:01 1998 Ross Johnson <rpj@swan.canberra.edu.au>
* private.c (_pthread_new_thread): Remove init of destructorstack. No longer an element of pthread_t.
-rw-r--r--ChangeLog3
-rw-r--r--private.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 309b02e..1183e3a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
Thu Oct 15 14:05:01 1998 Ross Johnson <rpj@swan.canberra.edu.au>
+ * private.c (_pthread_new_thread): Remove init of destructorstack.
+ No longer an element of pthread_t.
+
* tsd.c (pthread_setspecific): Fix type declaration and cast.
(pthread_getspecific): Ditto.
(pthread_getspecific): Change error return value to NULL if key
diff --git a/private.c b/private.c
index 9126aaa..783e0ef 100644
--- a/private.c
+++ b/private.c
@@ -104,7 +104,6 @@ _pthread_new_thread(pthread_t * thread)
new_thread->canceltype = PTHREAD_CANCEL_DEFERRED;
new_thread->cancel_pending = FALSE;
new_thread->cleanupstack = NULL;
- new_thread->destructorstack = NULL;
new_thread->forkpreparestack = NULL;
new_thread->forkparentstack = NULL;
new_thread->forkchildstack = NULL;