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). --- create.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'create.c') diff --git a/create.c b/create.c index 1079f07..f342ca4 100644 --- a/create.c +++ b/create.c @@ -74,7 +74,7 @@ pthread_create (pthread_t * tid, ThreadParms *parms = NULL; long stackSize; - if ((thread = _pthread_new()) == NULL) + if ((thread = ptw32_new()) == NULL) { goto FAIL0; } @@ -141,7 +141,7 @@ pthread_create (pthread_t * tid, _beginthreadex ( (void *) NULL, /* No security info */ (unsigned) stackSize, /* default stack size */ - (unsigned (PT_STDCALL *) (void *)) _pthread_threadStart, + (unsigned (PT_STDCALL *) (void *)) ptw32_threadStart, parms, (unsigned) CREATE_SUSPENDED, (unsigned *) &(thread->thread)); @@ -161,7 +161,7 @@ pthread_create (pthread_t * tid, thread->threadH = threadH = (HANDLE) _beginthread ( - (void (PT_STDCALL *) (void *)) _pthread_threadStart, + (void (PT_STDCALL *) (void *)) ptw32_hreadStart, (unsigned) stackSize, /* default stack size */ parms); @@ -202,7 +202,7 @@ FAIL0: if (result != 0) { - _pthread_threadDestroy (thread); + ptw32_threadDestroy (thread); thread = NULL; if (parms != NULL) -- cgit v1.2.3