summaryrefslogtreecommitdiff
path: root/pthread_rwlockattr_init.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_rwlockattr_init.c
parent8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff)
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'pthread_rwlockattr_init.c')
-rw-r--r--pthread_rwlockattr_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pthread_rwlockattr_init.c b/pthread_rwlockattr_init.c
index f7c49fe..242055a 100644
--- a/pthread_rwlockattr_init.c
+++ b/pthread_rwlockattr_init.c
@@ -50,7 +50,7 @@ pthread_rwlockattr_init (pthread_rwlockattr_t * attr)
*
* PARAMETERS
* attr
- * pointer to an instance of pthread_rwlockattr_t
+ * pointer to an instance of pthread_rwlockattr_t
*
*
* DESCRIPTION
@@ -58,8 +58,8 @@ pthread_rwlockattr_init (pthread_rwlockattr_t * attr)
* attributes.
*
* RESULTS
- * 0 successfully initialized attr,
- * ENOMEM insufficient memory for attr.
+ * 0 successfully initialized attr,
+ * ENOMEM insufficient memory for attr.
*
* ------------------------------------------------------
*/
@@ -80,5 +80,5 @@ pthread_rwlockattr_init (pthread_rwlockattr_t * attr)
*attr = rwa;
- return(result);
+ return (result);
} /* pthread_rwlockattr_init */