From 29c6105e142b4e5d674f26a9261d6cb6d151b6cb Mon Sep 17 00:00:00 2001 From: "Jonathan M. Henson" Date: Fri, 27 Oct 2023 12:50:30 -0700 Subject: [PATCH] make sure default thread options are safe. --- source/posix/thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/posix/thread.c b/source/posix/thread.c index 2d265f538..497deab8a 100644 --- a/source/posix/thread.c +++ b/source/posix/thread.c @@ -54,6 +54,7 @@ static struct aws_thread_options s_default_options = { .stack_size = 0, .cpu_id = -1, .join_strategy = AWS_TJS_MANUAL, + .cpu_group = -1, }; struct thread_atexit_callback {