From 015a85daf45dd0844717262096fc70c265490cc5 Mon Sep 17 00:00:00 2001 From: xieke <1023052645@qq.com> Date: Wed, 10 Sep 2025 14:34:45 +0800 Subject: [PATCH] builtin: fix thread naming issue on Windows by ignoring RaiseException (0x406D1388) (#25270) --- vlib/builtin/builtin_windows.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/builtin/builtin_windows.c.v b/vlib/builtin/builtin_windows.c.v index 00f76f833d..2b769366cf 100644 --- a/vlib/builtin/builtin_windows.c.v +++ b/vlib/builtin/builtin_windows.c.v @@ -125,7 +125,7 @@ fn unhandled_exception_handler(e &ExceptionPointers) int { match e.exception_record.code { // These are 'used' by the backtrace printer // so we dont want to catch them... - 0x4001000A, 0x40010006, 0xE06D7363 { + 0x4001000A, 0x40010006, 0x406D1388, 0xE06D7363 { return 0 } else {