From 0cb24e1c7e02f56cab43ffb6636cd58fd771fc55 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Thu, 20 Jun 2024 07:30:20 -0700 Subject: [PATCH] Fix default thread options for windows to not pin to any cpu_id (#1126) --- source/windows/thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/windows/thread.c b/source/windows/thread.c index b172178ce..6606c05be 100644 --- a/source/windows/thread.c +++ b/source/windows/thread.c @@ -21,6 +21,7 @@ static struct aws_thread_options s_default_options = { /* zero will make sure whatever the default for that version of windows is used. */ .stack_size = 0, + .cpu_id = -1, .join_strategy = AWS_TJS_MANUAL, };