summaryrefslogtreecommitdiff
path: root/mutex.c
diff options
context:
space:
mode:
authorrpj <rpj>2000-08-17 10:18:36 +0000
committerrpj <rpj>2000-08-17 10:18:36 +0000
commita366b6d8c2e6debf247c82af3d41aa2483711c52 (patch)
treee2a2f6785897a8789f88403e99d4f03dce301607 /mutex.c
parent951895c3aa196e90d4a5ecefe337d8773b8d33b7 (diff)
2000-08-17 Ross Johnson <rpj@special.ise.canberra.edu.au>
* All applicable: Change _pthread_ prefix to ptw32_ prefix to remove leading underscores from private library identifiers (single and double leading underscores are reserved in the ANSI C standard for compiler implementations).
Diffstat (limited to 'mutex.c')
-rw-r--r--mutex.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mutex.c b/mutex.c
index 448ad2a..1ea7aab 100644
--- a/mutex.c
+++ b/mutex.c
@@ -56,7 +56,7 @@ _mutex_check_need_init(pthread_mutex_t *mutex)
* the number of processors + 1.
*
*/
- EnterCriticalSection(&_pthread_mutex_test_init_lock);
+ EnterCriticalSection(&ptw32_mutex_test_init_lock);
/*
* We got here possibly under race
@@ -80,7 +80,7 @@ _mutex_check_need_init(pthread_mutex_t *mutex)
result = EINVAL;
}
- LeaveCriticalSection(&_pthread_mutex_test_init_lock);
+ LeaveCriticalSection(&ptw32_mutex_test_init_lock);
return(result);
}
@@ -140,7 +140,7 @@ pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
}
else
{
- if (_pthread_try_enter_critical_section != NULL
+ if (ptw32_ry_enter_critical_section != NULL
|| (attr != NULL
&& *attr != NULL
&& (*attr)->forcecs == 1)
@@ -234,7 +234,7 @@ pthread_mutex_destroy(pthread_mutex_t *mutex)
/*
* See notes in _mutex_check_need_init() above also.
*/
- EnterCriticalSection(&_pthread_mutex_test_init_lock);
+ EnterCriticalSection(&ptw32_mutex_test_init_lock);
/*
* Check again.
@@ -258,7 +258,7 @@ pthread_mutex_destroy(pthread_mutex_t *mutex)
result = EBUSY;
}
- LeaveCriticalSection(&_pthread_mutex_test_init_lock);
+ LeaveCriticalSection(&ptw32_mutex_test_init_lock);
}
return(result);
@@ -618,7 +618,7 @@ pthread_mutex_trylock(pthread_mutex_t *mutex)
{
if (mx->mutex == 0)
{
- if ((*_pthread_try_enter_critical_section)(&mx->cs) != TRUE)
+ if ((*ptw32_try_enter_critical_section)(&mx->cs) != TRUE)
{
result = EBUSY;
}