summaryrefslogtreecommitdiff
path: root/thread_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/thread_win32.c b/thread_win32.c
index a8c9b94cd7..2a3656450b 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -29,6 +29,18 @@ 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);
+rb_internal_thread_event_hook_t *
+rb_internal_thread_add_event_hook(rb_internal_thread_event_callback callback, rb_event_flag_t internal_event, void *user_data)
+{
+ // not implemented
+}
+
+bool
+rb_internal_thread_remove_event_hook(rb_internal_thread_event_hook_t * hook)
+{
+ // not implemented
+}
+
RBIMPL_ATTR_NORETURN()
static void
w32_error(const char *func)