Skip to content

Commit 6b06ab5

Browse files
committed
Remove unused function on Windows
1 parent fe6c6e1 commit 6b06ab5

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/core/ev.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -607,12 +607,7 @@ void janet_ev_init_common(void) {
607607
#endif
608608
}
609609

610-
#ifdef JANET_WINDOWS
611-
static VOID CALLBACK janet_timeout_stop(ULONG_PTR ptr) {
612-
UNREFERENCED_PARAMETER(ptr);
613-
ExitThread(0);
614-
}
615-
#elif JANET_ANDROID
610+
#if JANET_ANDROID
616611
static void janet_timeout_stop(int sig_num) {
617612
if (sig_num == SIGUSR1) {
618613
pthread_exit(0);

0 commit comments

Comments
 (0)