From a366b6d8c2e6debf247c82af3d41aa2483711c52 Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 17 Aug 2000 10:18:36 +0000 Subject: 2000-08-17 Ross Johnson * 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). --- mutex.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mutex.c') 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; } -- cgit v1.2.3