summaryrefslogtreecommitdiff
path: root/ptw32_mutex_check_need_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 /ptw32_mutex_check_need_init.c
parent8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff)
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'ptw32_mutex_check_need_init.c')
-rw-r--r--ptw32_mutex_check_need_init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ptw32_mutex_check_need_init.c b/ptw32_mutex_check_need_init.c
index f20024f..bcaaf8b 100644
--- a/ptw32_mutex_check_need_init.c
+++ b/ptw32_mutex_check_need_init.c
@@ -39,7 +39,7 @@
INLINE int
-ptw32_mutex_check_need_init(pthread_mutex_t *mutex)
+ptw32_mutex_check_need_init (pthread_mutex_t * mutex)
{
int result = 0;
@@ -64,7 +64,7 @@ ptw32_mutex_check_need_init(pthread_mutex_t *mutex)
* the number of processors + 1.
*
*/
- EnterCriticalSection(&ptw32_mutex_test_init_lock);
+ EnterCriticalSection (&ptw32_mutex_test_init_lock);
/*
* We got here possibly under race
@@ -76,7 +76,7 @@ ptw32_mutex_check_need_init(pthread_mutex_t *mutex)
*/
if (*mutex == PTHREAD_MUTEX_INITIALIZER)
{
- result = pthread_mutex_init(mutex, NULL);
+ result = pthread_mutex_init (mutex, NULL);
}
else if (*mutex == NULL)
{
@@ -88,7 +88,7 @@ ptw32_mutex_check_need_init(pthread_mutex_t *mutex)
result = EINVAL;
}
- LeaveCriticalSection(&ptw32_mutex_test_init_lock);
+ LeaveCriticalSection (&ptw32_mutex_test_init_lock);
- return(result);
+ return (result);
}