summaryrefslogtreecommitdiff
path: root/pthread_mutexattr_destroy.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_mutexattr_destroy.c
parent8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff)
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'pthread_mutexattr_destroy.c')
-rw-r--r--pthread_mutexattr_destroy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pthread_mutexattr_destroy.c b/pthread_mutexattr_destroy.c
index fb8ea0f..647efe0 100644
--- a/pthread_mutexattr_destroy.c
+++ b/pthread_mutexattr_destroy.c
@@ -48,7 +48,7 @@ pthread_mutexattr_destroy (pthread_mutexattr_t * attr)
*
* PARAMETERS
* attr
- * pointer to an instance of pthread_mutexattr_t
+ * pointer to an instance of pthread_mutexattr_t
*
*
* DESCRIPTION
@@ -56,11 +56,11 @@ pthread_mutexattr_destroy (pthread_mutexattr_t * attr)
* no longer be used.
*
* NOTES:
- * 1) Does not affect mutexes created using 'attr'
+ * 1) Does not affect mutexes created using 'attr'
*
* RESULTS
- * 0 successfully released attr,
- * EINVAL 'attr' is invalid.
+ * 0 successfully released attr,
+ * EINVAL 'attr' is invalid.
*
* ------------------------------------------------------
*/
@@ -79,5 +79,5 @@ pthread_mutexattr_destroy (pthread_mutexattr_t * attr)
free (ma);
}
- return(result);
+ return (result);
} /* pthread_mutexattr_destroy */