From ea2ea74a261da3cc954291ffdef9805ee59a80f7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 11 Feb 2024 20:03:18 +0900 Subject: [PATCH] Win32: Copy coroutine no longer exists At 42130a64f02294dc8025af3a51bda518c67ab33d, it has been replaced with pthread implementation. --- win32/Makefile.sub | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 009c640536..7792d5d8e3 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -330,8 +330,7 @@ COROUTINE_SRC = $(COROUTINE_OBJ:.obj=.asm) COROUTINE_OBJ = coroutine/win32/Context.obj COROUTINE_SRC = $(COROUTINE_OBJ:.obj=.asm) !else -COROUTINE_OBJ = coroutine/copy/Context.obj -COROUTINE_SRC = $(COROUTINE_OBJ:.obj=.c) +!error copy coroutine has been replaced with pthread implementation at 42130a64f02294dc8025af3a51bda518c67ab33d !endif COROUTINE_H = $(COROUTINE_OBJ:.obj=.h)