summaryrefslogtreecommitdiff
path: root/thread_win32.c
diff options
context:
space:
mode:
authorYuta Saito <kateinoigakukun@gmail.com>2022-01-16 00:37:09 +0900
committerYuta Saito <kateinoigakukun@gmail.com>2022-01-19 11:19:06 +0900
commitd6d52a7d049fd802b37d0f594629bad2cdc6b8c2 (patch)
treeb6f0efdba5823ace0919289ba8a4e7a06adf8b35 /thread_win32.c
parentbf1c4d254beb0e01fac1d9e6cb805de8ec6260eb (diff)
thread.c: put platform specific part in each impl file
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5407
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 026ccc4c60..9b44ceb96a 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -25,6 +25,12 @@
#define ubf_timer_disarm() do {} while (0)
#define ubf_list_atfork() do {} while (0)
+#define DEBUG_OUT() \
+ WaitForSingleObject(&debug_mutex, INFINITE); \
+ printf(POSITION_FORMAT"%#lx - %s" POSITION_ARGS, GetCurrentThreadId(), buf); \
+ fflush(stdout); \
+ ReleaseMutex(&debug_mutex);
+
static volatile DWORD ruby_native_thread_key = TLS_OUT_OF_INDEXES;
static int w32_wait_events(HANDLE *events, int count, DWORD timeout, rb_thread_t *th);