From 4f9abb9a45ffd711f9717db15d062fa020ed6cf5 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Thu, 11 Aug 2016 21:50:46 +0200 Subject: [PATCH] [Win32] Use _beginthreadex instead of CreateThread() --- src/lib/openjp2/thread.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/openjp2/thread.c b/src/lib/openjp2/thread.c index b2f8b5b2..59b5d87e 100644 --- a/src/lib/openjp2/thread.c +++ b/src/lib/openjp2/thread.c @@ -44,6 +44,7 @@ #endif #include +#include OPJ_BOOL OPJ_CALLCONV opj_has_thread_support(void) { @@ -224,11 +225,11 @@ struct opj_thread_t HANDLE hThread; }; -static DWORD WINAPI opj_thread_callback_adapter( void *info ) +unsigned int __stdcall opj_thread_callback_adapter( void *info ) { opj_thread_t* thread = (opj_thread_t*) info; HANDLE hEvent = NULL; - + thread->thread_fn( thread->user_data ); /* Free the handle possible allocated by a cond */ @@ -258,7 +259,6 @@ static DWORD WINAPI opj_thread_callback_adapter( void *info ) opj_thread_t* opj_thread_create( opj_thread_fn thread_fn, void* user_data ) { opj_thread_t* thread; - DWORD nThreadId = 0; assert( thread_fn ); @@ -268,8 +268,8 @@ opj_thread_t* opj_thread_create( opj_thread_fn thread_fn, void* user_data ) thread->thread_fn = thread_fn; thread->user_data = user_data; - thread->hThread = CreateThread( NULL, 0, opj_thread_callback_adapter, thread, - 0, &nThreadId ); + thread->hThread = (HANDLE)_beginthreadex(NULL, 0, + opj_thread_callback_adapter, thread, 0, NULL); if( thread->hThread == NULL ) {