summaryrefslogtreecommitdiff
path: root/ptw32_callUserDestroyRoutines.c
diff options
context:
space:
mode:
authorrpj <rpj>2005-05-06 07:31:28 +0000
committerrpj <rpj>2005-05-06 07:31:28 +0000
commit78f83cfa240ec14874b22c7302ff8d306c130aaf (patch)
treebf29a117aecb99e9ecb2d30bad398d8b20392b49 /ptw32_callUserDestroyRoutines.c
parente3845d9b6b0a18ffdfdf0cefd811a17fce62f1ac (diff)
''
Diffstat (limited to 'ptw32_callUserDestroyRoutines.c')
-rw-r--r--ptw32_callUserDestroyRoutines.c114
1 files changed, 49 insertions, 65 deletions
diff --git a/ptw32_callUserDestroyRoutines.c b/ptw32_callUserDestroyRoutines.c
index 410d714..226c1d8 100644
--- a/ptw32_callUserDestroyRoutines.c
+++ b/ptw32_callUserDestroyRoutines.c
@@ -64,100 +64,84 @@ ptw32_callUserDestroyRoutines (pthread_t thread)
* -------------------------------------------------------------------
*/
{
- ThreadKeyAssoc **
- nextP;
- ThreadKeyAssoc *
- assoc;
+ ThreadKeyAssoc * next;
+ ThreadKeyAssoc * assoc;
if (thread.p != NULL)
{
+ ptw32_thread_t * sp = (ptw32_thread_t *) thread.p;
+
/*
* Run through all Thread<-->Key associations
* for the current thread.
- * If the pthread_key_t still exists (ie the assoc->key
- * is not NULL) then call the user's TSD destroy routine.
- * Notes:
- * If assoc->key is NULL, then the user previously called
- * PThreadKeyDestroy. The association is now only referenced
- * by the current thread and must be released; otherwise
- * the assoc will be destroyed when the key is destroyed.
*/
- nextP = (ThreadKeyAssoc **) &((ptw32_thread_t *)thread.p)->keys;
- assoc = *nextP;
+ assoc = next = (ThreadKeyAssoc *) sp->keys;
while (assoc != NULL)
{
+ pthread_key_t k;
- if (pthread_mutex_lock (&(assoc->lock)) == 0)
+ if ((k = assoc->key) != NULL
+ && pthread_mutex_lock(&(k->keyLock)) == 0)
{
- pthread_key_t k;
- pthread_t nil = {NULL, 0};
+ /*
+ * Key still active; pthread_key_delete
+ * will block on this same mutex before
+ * it can release actual key; therefore,
+ * key is valid and we can call the destroy
+ * routine;
+ */
+ void * value = NULL;
- if ((k = assoc->key) != NULL)
+ value = pthread_getspecific (k);
+ if (value != NULL && k->destructor != NULL)
{
- /*
- * Key still active; pthread_key_delete
- * will block on this same mutex before
- * it can release actual key; therefore,
- * key is valid and we can call the destroy
- * routine;
- */
- void * value = NULL;
-
- value = pthread_getspecific (k);
- if (value != NULL && k->destructor != NULL)
- {
#ifdef __cplusplus
- try
- {
- /*
- * Run the caller's cleanup routine.
- */
- (*(k->destructor)) (value);
- }
- catch (...)
- {
- /*
- * A system unexpected exception has occurred
- * running the user's destructor.
- * We get control back within this block in case
- * the application has set up it's own terminate
- * handler. Since we are leaving the thread we
- * should not get any internal pthreads
- * exceptions.
- */
- terminate ();
- }
-
-#else /* __cplusplus */
-
+ try
+ {
/*
* Run the caller's cleanup routine.
*/
(*(k->destructor)) (value);
+ }
+ catch (...)
+ {
+ /*
+ * A system unexpected exception has occurred
+ * running the user's destructor.
+ * We get control back within this block in case
+ * the application has set up it's own terminate
+ * handler. Since we are leaving the thread we
+ * should not get any internal pthreads
+ * exceptions.
+ */
+ (void) pthread_mutex_unlock(&(k->keyLock));
+ terminate ();
+ }
+
+#else /* __cplusplus */
+
+ /*
+ * Run the caller's cleanup routine.
+ */
+ (*(k->destructor)) (value);
#endif /* __cplusplus */
- }
}
/*
- * mark assoc->thread as NULL to indicate the
- * thread no longer references this association
- */
- assoc->thread = nil;
-
- /*
- * Remove association from the pthread_t chain
+ * Remove association from both the key and thread chains
*/
- *nextP = assoc->nextKey;
-
- pthread_mutex_unlock (&(assoc->lock));
-
+ (void) pthread_mutex_lock(&(sp->threadLock));
+ next = assoc->nextKey;
ptw32_tkAssocDestroy (assoc);
+ (void) pthread_mutex_unlock(&(sp->threadLock));
+
+ assoc = next;
- assoc = *nextP;
+ (void) pthread_mutex_unlock(&(k->keyLock));
}
}
}