summaryrefslogtreecommitdiff
path: root/sync.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 /sync.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 'sync.c')
-rw-r--r--sync.c4
1 files changed, 2 insertions, 2 deletions
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__ */