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). --- sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sync.c') diff --git a/sync.c b/sync.c index 97decdd..83f421c 100644 --- a/sync.c +++ b/sync.c @@ -154,7 +154,7 @@ pthread_join (pthread_t thread, void **value_ptr) * The result of making multiple simultaneous calls to * pthread_join() specifying the same target is undefined. */ - _pthread_threadDestroy (thread); + ptw32_threadDestroy (thread); } #else /* __MINGW32__ && ! __MSVCRT__ */ @@ -172,7 +172,7 @@ pthread_join (pthread_t thread, void **value_ptr) * The result of making multiple simultaneous calls to * pthread_join() specifying the same target is undefined. */ - _pthread_threadDestroy (thread); + ptw32_threadDestroy (thread); #endif /* __MINGW32__ && ! __MSVCRT__ */ -- cgit v1.2.3