From 8e68ed4ef6f5d0d6330d2671d253ff875729d1c8 Mon Sep 17 00:00:00 2001 From: bje Date: Sat, 3 Oct 1998 04:40:32 +0000 Subject: 1998-10-03 Ben Elliston * create.c (_pthread_start_call): Add STDCALL prefix. --- create.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'create.c') diff --git a/create.c b/create.c index 0afa31f..d313a8a 100644 --- a/create.c +++ b/create.c @@ -16,7 +16,7 @@ #include "implement.h" unsigned -_pthread_start_call(void * us_arg) +STDCALL _pthread_start_call(void * us_arg) { /* We're now in a running thread. Any local variables here are on this thread's private stack so we're safe to leave data in them @@ -86,7 +86,7 @@ pthread_create(pthread_t *thread, attr_copy->detachedstate = attr->detachedstate; attr_copy->priority = attr->priority; -#ifdef HAVE_SIGSET_T +#if HAVE_SIGSET_T memcpy(&(attr_copy->sigmask), &(attr->sigmask), sizeof(sigset_t)); #endif /* HAVE_SIGSET_T */ } -- cgit v1.2.3