Skip to content

Commit

Permalink
gh-100227: Lock Around Modification of the Global Allocators State (g…
Browse files Browse the repository at this point in the history
…h-105516)

The risk of a race with this state is relatively low, but we play it safe anyway. We do avoid using the lock in performance-sensitive cases where the risk of a race is very, very low.
  • Loading branch information
ericsnowcurrently committed Jun 8, 2023
1 parent 4ff5690 commit 68dfa49
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 56 deletions.
1 change: 1 addition & 0 deletions Include/internal/pycore_pymem.h
Expand Up @@ -18,6 +18,7 @@ typedef struct {
} debug_alloc_api_t;

struct _pymem_allocators {
PyThread_type_lock mutex;
struct {
PyMemAllocatorEx raw;
PyMemAllocatorEx mem;
Expand Down
6 changes: 3 additions & 3 deletions Include/internal/pycore_runtime_init.h
Expand Up @@ -25,9 +25,9 @@ extern PyTypeObject _PyExc_MemoryError;
#define _PyRuntimeState_INIT(runtime) \
{ \
.allocators = { \
_pymem_allocators_standard_INIT(runtime), \
_pymem_allocators_debug_INIT, \
_pymem_allocators_obj_arena_INIT, \
.standard = _pymem_allocators_standard_INIT(runtime), \
.debug = _pymem_allocators_debug_INIT, \
.obj_arena = _pymem_allocators_obj_arena_INIT, \
}, \
.obmalloc = _obmalloc_global_state_INIT, \
.pyhash_state = pyhash_state_INIT, \
Expand Down

0 comments on commit 68dfa49

Please sign in to comment.