diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-11-02 21:57:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 21:57:26 (GMT) |
commit | 88736db5d64823473684b8b3b1c466c6554f1a10 (patch) | |
tree | c7662af45e3d7eff8ebaf8a3a9209732d868f1c7 | |
parent | 3ff659aea2c114e0ff94409a371b8b797ca7d7a6 (diff) | |
download | cpython-88736db5d64823473684b8b3b1c466c6554f1a10.zip cpython-88736db5d64823473684b8b3b1c466c6554f1a10.tar.gz cpython-88736db5d64823473684b8b3b1c466c6554f1a10.tar.bz2 |
gh-96997: Clarify the contract of PyMem_SetAllocator() (GH-98977)
(cherry picked from commit c053284e3930027847d5adf99efcb1aa5ccbacd1)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
-rw-r--r-- | Doc/c-api/memory.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index f726cd4..7041c15 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -95,6 +95,8 @@ for the I/O buffer escapes completely the Python memory manager. Allocator Domains ================= +.. _allocator-domains: + All allocating functions belong to one of three different "domains" (see also :c:type:`PyMemAllocatorDomain`). These domains represent different allocation strategies and are optimized for different purposes. The specific details on @@ -479,6 +481,25 @@ Customize Memory Allocators See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python with PyPreConfig <c-preinit>`. + .. warning:: + + :c:func:`PyMem_SetAllocator` does have the following contract: + + * It can be called after :c:func:`Py_PreInitialize` and before + :c:func:`Py_InitializeFromConfig` to install a custom memory + allocator. There are no restrictions over the installed allocator + other than the ones imposed by the domain (for instance, the Raw + Domain allows the allocator to be called without the GIL held). See + :ref:`the section on allocator domains <allocator-domains>` for more + information. + + * If called after Python has finish initializing (after + :c:func:`Py_InitializeFromConfig` has been called) the allocator + **must** wrap the existing allocator. Substituting the current + allocator for some other arbitrary one is **not supported**. + + + .. c:function:: void PyMem_SetupDebugHooks(void) Setup :ref:`debug hooks in the Python memory allocators <pymem-debug-hooks>` |