summaryrefslogtreecommitdiff
path: root/pthread_setspecific.c
diff options
context:
space:
mode:
authorrpj <rpj>2004-05-17 01:38:02 +0000
committerrpj <rpj>2004-05-17 01:38:02 +0000
commit771465fed0cf50ee2dd790723245fc091699c324 (patch)
treed8c18d095a33fe7c4564bd90c5f313bb9e4057dd /pthread_setspecific.c
parent8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff)
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'pthread_setspecific.c')
-rw-r--r--pthread_setspecific.c88
1 files changed, 43 insertions, 45 deletions
diff --git a/pthread_setspecific.c b/pthread_setspecific.c
index 8003786..b7c82d0 100644
--- a/pthread_setspecific.c
+++ b/pthread_setspecific.c
@@ -44,13 +44,13 @@ pthread_setspecific (pthread_key_t key, const void *value)
* ------------------------------------------------------
* DOCPUBLIC
* This function sets the value of the thread specific
- * key in the calling thread.
+ * key in the calling thread.
*
* PARAMETERS
* key
* an instance of pthread_key_t
- * value
- * the value to set key to
+ * value
+ * the value to set key to
*
*
* DESCRIPTION
@@ -77,9 +77,9 @@ pthread_setspecific (pthread_key_t key, const void *value)
*/
self = pthread_self ();
if (self == NULL)
- {
- return ENOENT;
- }
+ {
+ return ENOENT;
+ }
}
else
{
@@ -89,9 +89,9 @@ pthread_setspecific (pthread_key_t key, const void *value)
*/
self = (pthread_t) pthread_getspecific (ptw32_selfThreadKey);
if (self == NULL)
- {
- self = (pthread_t) value;
- }
+ {
+ self = (pthread_t) value;
+ }
}
result = 0;
@@ -100,52 +100,50 @@ pthread_setspecific (pthread_key_t key, const void *value)
{
ThreadKeyAssoc *assoc;
- if (self != NULL &&
- key->destructor != NULL &&
- value != NULL)
- {
- /*
- * Only require associations if we have to
- * call user destroy routine.
- * Don't need to locate an existing association
- * when setting data to NULL for WIN32 since the
- * data is stored with the operating system; not
- * on the association; setting assoc to NULL short
- * circuits the search.
- */
- assoc = (ThreadKeyAssoc *) self->keys;
- /*
- * Locate existing association
- */
- while (assoc != NULL)
- {
- if (assoc->key == key)
- {
- /*
- * Association already exists
- */
- break;
- }
- assoc = assoc->nextKey;
- }
+ if (self != NULL && key->destructor != NULL && value != NULL)
+ {
+ /*
+ * Only require associations if we have to
+ * call user destroy routine.
+ * Don't need to locate an existing association
+ * when setting data to NULL for WIN32 since the
+ * data is stored with the operating system; not
+ * on the association; setting assoc to NULL short
+ * circuits the search.
+ */
+ assoc = (ThreadKeyAssoc *) self->keys;
+ /*
+ * Locate existing association
+ */
+ while (assoc != NULL)
+ {
+ if (assoc->key == key)
+ {
+ /*
+ * Association already exists
+ */
+ break;
+ }
+ assoc = assoc->nextKey;
+ }
- /*
- * create an association if not found
- */
+ /*
+ * create an association if not found
+ */
if (assoc == NULL)
{
result = ptw32_tkAssocCreate (&assoc, self, key);
}
- }
+ }
if (result == 0)
- {
- if ( ! TlsSetValue (key->key, (LPVOID) value))
+ {
+ if (!TlsSetValue (key->key, (LPVOID) value))
{
result = EAGAIN;
}
- }
+ }
}
return (result);
-} /* pthread_setspecific */
+} /* pthread_setspecific */