From: Kumar Aditya Date: Fri, 24 Oct 2025 07:51:44 +0000 (+0530) Subject: [3.14] gh-137093: Fix race condition in `test_embed.test_bpo20891` (GH-137094) (... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6efd78d7ab01c5daf2197c8c9e8f2db046e6d8f1;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-137093: Fix race condition in `test_embed.test_bpo20891` (GH-137094) (#140524) Use a `PyEvent` instead of a lock to fix a race on the free-threaded build. (cherry picked from commit 9b451fb457a5de9ed535a0e2f41161dfaa9a419a) Co-authored-by: Peter Bierma --- diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 41cc5b145344..6958a1679a2a 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -413,9 +413,9 @@ static int test_pre_initialization_sys_options(void) /* bpo-20891: Avoid race condition when initialising the GIL */ -static void bpo20891_thread(void *lockp) +static void bpo20891_thread(void *eventp) { - PyThread_type_lock lock = *((PyThread_type_lock*)lockp); + PyEvent *event = (PyEvent *)eventp; PyGILState_STATE state = PyGILState_Ensure(); if (!PyGILState_Check()) { @@ -424,8 +424,7 @@ static void bpo20891_thread(void *lockp) } PyGILState_Release(state); - - PyThread_release_lock(lock); + _PyEvent_Notify(event); } static int test_bpo20891(void) @@ -435,27 +434,17 @@ static int test_bpo20891(void) /* bpo-20891: Calling PyGILState_Ensure in a non-Python thread must not crash. */ - PyThread_type_lock lock = PyThread_allocate_lock(); - if (!lock) { - error("PyThread_allocate_lock failed!"); - return 1; - } _testembed_Py_InitializeFromConfig(); + PyEvent event = {0}; - unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &lock); + unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &event); if (thrd == PYTHREAD_INVALID_THREAD_ID) { error("PyThread_start_new_thread failed!"); return 1; } - PyThread_acquire_lock(lock, WAIT_LOCK); - - Py_BEGIN_ALLOW_THREADS - /* wait until the thread exit */ - PyThread_acquire_lock(lock, WAIT_LOCK); - Py_END_ALLOW_THREADS - PyThread_free_lock(lock); + PyEvent_Wait(&event); Py_Finalize();