summaryrefslogtreecommitdiffstats
path: root/osdep/win32
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/win32')
-rw-r--r--osdep/win32/pthread.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/osdep/win32/pthread.c b/osdep/win32/pthread.c
index dfc70288ac..d4a5ddc22a 100644
--- a/osdep/win32/pthread.c
+++ b/osdep/win32/pthread.c
@@ -205,7 +205,11 @@ int pthread_detach(pthread_t thread)
static DWORD WINAPI run_thread(LPVOID lpParameter)
{
- struct m_thread_info *info = lpParameter;
+ pthread_mutex_lock(&pthread_table_lock);
+ struct m_thread_info *info = find_thread_info(pthread_self());
+ assert(info);
+ pthread_mutex_unlock(&pthread_table_lock);
+
pthread_exit(info->user_fn(info->user_arg));
abort(); // not reached
}
@@ -228,7 +232,7 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
.user_fn = start_routine,
.user_arg = arg,
};
- info->handle = CreateThread(NULL, 0, run_thread, info, CREATE_SUSPENDED,
+ info->handle = CreateThread(NULL, 0, run_thread, NULL, CREATE_SUSPENDED,
&info->id);
if (!info->handle) {
remove_thread_info(info);