summaryrefslogtreecommitdiff
path: root/gcc/gthr-vxworks.h
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-12-04 00:28:34 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-12-04 00:28:34 +0000
commit5483d6d391f65ecc899f7f74ec5d0f3e791530b1 (patch)
tree110b6dc685ee9f0842de2dda6c788f9d5ffd6539 /gcc/gthr-vxworks.h
parent781db7fc653e5a6a39c864927cf9b356eccaf8c7 (diff)
downloadgcc-5483d6d391f65ecc899f7f74ec5d0f3e791530b1.tar.gz
* gthr-vxworks.h (__ehdtor): Fix memory leak. The delete hook
runs in the context of the deleter, not the deletee, so we must use taskVarGet to find the correct memory to free. (__gthread_key_create): Initialize the task variable subsystem so that the task variable is still active when the delete hook is run. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24079 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gthr-vxworks.h')
-rw-r--r--gcc/gthr-vxworks.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/gcc/gthr-vxworks.h b/gcc/gthr-vxworks.h
index 98766467818..6d51ded2cda 100644
--- a/gcc/gthr-vxworks.h
+++ b/gcc/gthr-vxworks.h
@@ -60,11 +60,16 @@ extern __gthread_key_t eh_context_key;
don't map well enough onto VxWorks. */
static void
-__ehdtor ()
+__ehdtor (void *pTcb)
{
- if (eh_context_key)
- free ((void*)eh_context_key);
- eh_context_key = 0;
+ int tid = (int) pTcb;
+ void *p = (void*)taskVarGet(tid, &eh_context_key);
+ if (p != (void*)-1)
+ {
+ if (p)
+ free (p);
+ taskVarSet(tid, &eh_context_key, 0);
+ }
}
/* This only works for the code in libgcc2.c. */
@@ -74,6 +79,11 @@ __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
{
*key = 0;
+ /* Do this first so that the task variables are visible during the
+ running of the delete hook. */
+
+ taskVarInit();
+
/* We don't have a way to track dtor here, so instead, we
register a generic routine that can cleanup any task. */