From 828aff14763186d0fc2907895123095ed73116a3 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 26 Aug 2015 10:02:02 -0600 Subject: [PATCH] unbreak non-Windows build --- racket/src/racket/src/mzrt.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/racket/src/racket/src/mzrt.c b/racket/src/racket/src/mzrt.c index f5a5823a8c..c3a5cdc7bb 100644 --- a/racket/src/racket/src/mzrt.c +++ b/racket/src/racket/src/mzrt.c @@ -153,9 +153,6 @@ typedef struct mzrt_thread_stub_data { mz_proc_thread_start start_proc; void *data; mz_proc_thread *thread; -#ifdef WIN32 - void *res; -#endif } mzrt_thread_stub_data; void *mzrt_thread_stub(void *data){ @@ -216,7 +213,7 @@ mz_proc_thread* mzrt_proc_first_thread_init() { but it will be distinct from all other IDs: */ thread->threadid = GetCurrentThread(); #else - thread->threadid = mz_proc_thread_self(); + thread->threadid = mz_proc_os_thread_self(); #endif proc_thread_self = thread;