From fd69e03d72ea80b0b9bd57fb9ee4ff852a5991e3 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Mon, 22 Apr 2024 10:23:37 -0700 Subject: [PATCH] not too high invalid cpu id value --- tests/thread_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thread_test.c b/tests/thread_test.c index 50085d843..9d9fb62d9 100644 --- a/tests/thread_test.c +++ b/tests/thread_test.c @@ -80,7 +80,7 @@ static int s_test_thread_creation_join_invalid_cpu_id_fn(struct aws_allocator *a struct aws_thread_options thread_options = *aws_default_thread_options(); /* invalid cpu_id. Ensure that the cpu_id is best-effort based. */ - thread_options.cpu_id = 4096; + thread_options.cpu_id = 512; ASSERT_SUCCESS( aws_thread_launch(&thread, s_thread_fn, (void *)&test_data, &thread_options), "thread creation failed");