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). --- rwlock.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rwlock.c') diff --git a/rwlock.c b/rwlock.c index a4cdd5f..f476b8a 100644 --- a/rwlock.c +++ b/rwlock.c @@ -54,7 +54,7 @@ _rwlock_check_need_init(pthread_rwlock_t *rwlock) * the number of processors + 1. * */ - EnterCriticalSection(&_pthread_rwlock_test_init_lock); + EnterCriticalSection(&ptw32_rwlock_test_init_lock); /* * We got here possibly under race @@ -78,7 +78,7 @@ _rwlock_check_need_init(pthread_rwlock_t *rwlock) result = EINVAL; } - LeaveCriticalSection(&_pthread_rwlock_test_init_lock); + LeaveCriticalSection(&ptw32_rwlock_test_init_lock); return(result); } @@ -197,7 +197,7 @@ pthread_rwlock_destroy(pthread_rwlock_t *rwlock) /* * See notes in _rwlock_check_need_init() above also. */ - EnterCriticalSection(&_pthread_rwlock_test_init_lock); + EnterCriticalSection(&ptw32_wlock_test_init_lock); /* * Check again. @@ -221,7 +221,7 @@ pthread_rwlock_destroy(pthread_rwlock_t *rwlock) result = EBUSY; } - LeaveCriticalSection(&_pthread_rwlock_test_init_lock); + LeaveCriticalSection(&ptw32_rwlock_test_init_lock); } return(result); -- cgit v1.2.3