blob: 22b9fe2a4a440de281278a0cfa0a17d01bec6f38 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. highlightlang:: c
2
3
4.. _memory:
5
6*****************
7Memory Management
8*****************
9
10.. sectionauthor:: Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>
11
12
13
14.. _memoryoverview:
15
16Overview
17========
18
19Memory management in Python involves a private heap containing all Python
20objects and data structures. The management of this private heap is ensured
21internally by the *Python memory manager*. The Python memory manager has
22different components which deal with various dynamic storage management aspects,
23like sharing, segmentation, preallocation or caching.
24
25At the lowest level, a raw memory allocator ensures that there is enough room in
26the private heap for storing all Python-related data by interacting with the
27memory manager of the operating system. On top of the raw memory allocator,
28several object-specific allocators operate on the same heap and implement
29distinct memory management policies adapted to the peculiarities of every object
30type. For example, integer objects are managed differently within the heap than
31strings, tuples or dictionaries because integers imply different storage
32requirements and speed/space tradeoffs. The Python memory manager thus delegates
33some of the work to the object-specific allocators, but ensures that the latter
34operate within the bounds of the private heap.
35
36It is important to understand that the management of the Python heap is
37performed by the interpreter itself and that the user has no control over it,
38even if she regularly manipulates object pointers to memory blocks inside that
39heap. The allocation of heap space for Python objects and other internal
40buffers is performed on demand by the Python memory manager through the Python/C
41API functions listed in this document.
42
43.. index::
44 single: malloc()
45 single: calloc()
46 single: realloc()
47 single: free()
48
49To avoid memory corruption, extension writers should never try to operate on
Georg Brandl60203b42010-10-06 10:11:56 +000050Python objects with the functions exported by the C library: :c:func:`malloc`,
51:c:func:`calloc`, :c:func:`realloc` and :c:func:`free`. This will result in mixed
Georg Brandl116aa622007-08-15 14:28:22 +000052calls between the C allocator and the Python memory manager with fatal
53consequences, because they implement different algorithms and operate on
54different heaps. However, one may safely allocate and release memory blocks
55with the C library allocator for individual purposes, as shown in the following
56example::
57
58 PyObject *res;
59 char *buf = (char *) malloc(BUFSIZ); /* for I/O */
60
61 if (buf == NULL)
62 return PyErr_NoMemory();
63 ...Do some I/O operation involving buf...
Gregory P. Smith4b52ae82013-03-22 13:43:30 -070064 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +000065 free(buf); /* malloc'ed */
66 return res;
67
68In this example, the memory request for the I/O buffer is handled by the C
69library allocator. The Python memory manager is involved only in the allocation
70of the string object returned as a result.
71
72In most situations, however, it is recommended to allocate memory from the
73Python heap specifically because the latter is under control of the Python
74memory manager. For example, this is required when the interpreter is extended
75with new object types written in C. Another reason for using the Python heap is
76the desire to *inform* the Python memory manager about the memory needs of the
77extension module. Even when the requested memory is used exclusively for
78internal, highly-specific purposes, delegating all memory requests to the Python
79memory manager causes the interpreter to have a more accurate image of its
80memory footprint as a whole. Consequently, under certain circumstances, the
81Python memory manager may or may not trigger appropriate actions, like garbage
82collection, memory compaction or other preventive procedures. Note that by using
83the C library allocator as shown in the previous example, the allocated memory
84for the I/O buffer escapes completely the Python memory manager.
85
Victor Stinner29bf27f2016-03-09 14:49:52 +010086.. seealso::
87
Victor Stinner34be8072016-03-14 12:04:26 +010088 The :envvar:`PYTHONMALLOC` environment variable can be used to configure
89 the memory allocators used by Python.
90
Victor Stinner29bf27f2016-03-09 14:49:52 +010091 The :envvar:`PYTHONMALLOCSTATS` environment variable can be used to print
Victor Stinner34be8072016-03-14 12:04:26 +010092 statistics of the :ref:`pymalloc memory allocator <pymalloc>` every time a
93 new pymalloc object arena is created, and on shutdown.
Victor Stinner29bf27f2016-03-09 14:49:52 +010094
Georg Brandl116aa622007-08-15 14:28:22 +000095
Victor Stinner0507bf52013-07-07 02:05:46 +020096Raw Memory Interface
97====================
98
99The following function sets are wrappers to the system allocator. These
100functions are thread-safe, the :term:`GIL <global interpreter lock>` does not
101need to be held.
102
103The default raw memory block allocator uses the following functions:
Victor Stinnerdb067af2014-05-02 22:31:14 +0200104:c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`; call
105``malloc(1)`` (or ``calloc(1, 1)``) when requesting zero bytes.
Victor Stinner0507bf52013-07-07 02:05:46 +0200106
107.. versionadded:: 3.4
108
109.. c:function:: void* PyMem_RawMalloc(size_t n)
110
111 Allocates *n* bytes and returns a pointer of type :c:type:`void\*` to the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100112 allocated memory, or *NULL* if the request fails.
113
114 Requesting zero bytes returns a distinct non-*NULL* pointer if possible, as
115 if ``PyMem_RawMalloc(1)`` had been called instead. The memory will not have
Victor Stinner0507bf52013-07-07 02:05:46 +0200116 been initialized in any way.
117
118
Victor Stinnerdb067af2014-05-02 22:31:14 +0200119.. c:function:: void* PyMem_RawCalloc(size_t nelem, size_t elsize)
120
121 Allocates *nelem* elements each whose size in bytes is *elsize* and returns
122 a pointer of type :c:type:`void\*` to the allocated memory, or *NULL* if the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100123 request fails. The memory is initialized to zeros.
124
125 Requesting zero elements or elements of size zero bytes returns a distinct
126 non-*NULL* pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been
127 called instead.
Victor Stinnerdb067af2014-05-02 22:31:14 +0200128
129 .. versionadded:: 3.5
130
131
Victor Stinner0507bf52013-07-07 02:05:46 +0200132.. c:function:: void* PyMem_RawRealloc(void *p, size_t n)
133
134 Resizes the memory block pointed to by *p* to *n* bytes. The contents will
Victor Stinner29bf27f2016-03-09 14:49:52 +0100135 be unchanged to the minimum of the old and the new sizes.
136
137 If *p* is *NULL*, the call is equivalent to ``PyMem_RawMalloc(n)``; else if
138 *n* is equal to zero, the memory block is resized but is not freed, and the
139 returned pointer is non-*NULL*.
140
141 Unless *p* is *NULL*, it must have been returned by a previous call to
142 :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or
143 :c:func:`PyMem_RawCalloc`.
144
145 If the request fails, :c:func:`PyMem_RawRealloc` returns *NULL* and *p*
146 remains a valid pointer to the previous memory area.
Victor Stinner0507bf52013-07-07 02:05:46 +0200147
148
149.. c:function:: void PyMem_RawFree(void *p)
150
151 Frees the memory block pointed to by *p*, which must have been returned by a
Victor Stinner29bf27f2016-03-09 14:49:52 +0100152 previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or
153 :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_Free(p)`` has been
154 called before, undefined behavior occurs.
155
156 If *p* is *NULL*, no operation is performed.
Victor Stinner0507bf52013-07-07 02:05:46 +0200157
158
Georg Brandl116aa622007-08-15 14:28:22 +0000159.. _memoryinterface:
160
161Memory Interface
162================
163
164The following function sets, modeled after the ANSI C standard, but specifying
165behavior when requesting zero bytes, are available for allocating and releasing
Victor Stinner0507bf52013-07-07 02:05:46 +0200166memory from the Python heap.
Georg Brandl116aa622007-08-15 14:28:22 +0000167
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200168By default, these functions use :ref:`pymalloc memory allocator <pymalloc>`.
Victor Stinner0507bf52013-07-07 02:05:46 +0200169
170.. warning::
171
172 The :term:`GIL <global interpreter lock>` must be held when using these
173 functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000174
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200175.. versionchanged:: 3.6
176
177 The default allocator is now pymalloc instead of system :c:func:`malloc`.
178
Georg Brandl60203b42010-10-06 10:11:56 +0000179.. c:function:: void* PyMem_Malloc(size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000180
Georg Brandl60203b42010-10-06 10:11:56 +0000181 Allocates *n* bytes and returns a pointer of type :c:type:`void\*` to the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100182 allocated memory, or *NULL* if the request fails.
183
184 Requesting zero bytes returns a distinct non-*NULL* pointer if possible, as
185 if ``PyMem_Malloc(1)`` had been called instead. The memory will not have
186 been initialized in any way.
Georg Brandl116aa622007-08-15 14:28:22 +0000187
188
Victor Stinnerdb067af2014-05-02 22:31:14 +0200189.. c:function:: void* PyMem_Calloc(size_t nelem, size_t elsize)
190
191 Allocates *nelem* elements each whose size in bytes is *elsize* and returns
192 a pointer of type :c:type:`void\*` to the allocated memory, or *NULL* if the
Victor Stinner29bf27f2016-03-09 14:49:52 +0100193 request fails. The memory is initialized to zeros.
194
195 Requesting zero elements or elements of size zero bytes returns a distinct
196 non-*NULL* pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been called
197 instead.
Victor Stinnerdb067af2014-05-02 22:31:14 +0200198
199 .. versionadded:: 3.5
200
201
Georg Brandl60203b42010-10-06 10:11:56 +0000202.. c:function:: void* PyMem_Realloc(void *p, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000203
204 Resizes the memory block pointed to by *p* to *n* bytes. The contents will be
Victor Stinner29bf27f2016-03-09 14:49:52 +0100205 unchanged to the minimum of the old and the new sizes.
206
207 If *p* is *NULL*, the call is equivalent to ``PyMem_Malloc(n)``; else if *n*
208 is equal to zero, the memory block is resized but is not freed, and the
209 returned pointer is non-*NULL*.
210
211 Unless *p* is *NULL*, it must have been returned by a previous call to
212 :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`.
213
214 If the request fails, :c:func:`PyMem_Realloc` returns *NULL* and *p* remains
215 a valid pointer to the previous memory area.
Georg Brandl116aa622007-08-15 14:28:22 +0000216
217
Georg Brandl60203b42010-10-06 10:11:56 +0000218.. c:function:: void PyMem_Free(void *p)
Georg Brandl116aa622007-08-15 14:28:22 +0000219
220 Frees the memory block pointed to by *p*, which must have been returned by a
Victor Stinner29bf27f2016-03-09 14:49:52 +0100221 previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or
222 :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been called
223 before, undefined behavior occurs.
224
225 If *p* is *NULL*, no operation is performed.
Georg Brandl116aa622007-08-15 14:28:22 +0000226
227The following type-oriented macros are provided for convenience. Note that
228*TYPE* refers to any C type.
229
230
Georg Brandl60203b42010-10-06 10:11:56 +0000231.. c:function:: TYPE* PyMem_New(TYPE, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000232
Georg Brandl60203b42010-10-06 10:11:56 +0000233 Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes of
234 memory. Returns a pointer cast to :c:type:`TYPE\*`. The memory will not have
Georg Brandl116aa622007-08-15 14:28:22 +0000235 been initialized in any way.
236
237
Georg Brandl60203b42010-10-06 10:11:56 +0000238.. c:function:: TYPE* PyMem_Resize(void *p, TYPE, size_t n)
Georg Brandl116aa622007-08-15 14:28:22 +0000239
Georg Brandl60203b42010-10-06 10:11:56 +0000240 Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n *
241 sizeof(TYPE))`` bytes. Returns a pointer cast to :c:type:`TYPE\*`. On return,
Georg Brandld492ad82008-07-23 16:13:07 +0000242 *p* will be a pointer to the new memory area, or *NULL* in the event of
Victor Stinner29bf27f2016-03-09 14:49:52 +0100243 failure.
244
245 This is a C preprocessor macro; *p* is always reassigned. Save the original
246 value of *p* to avoid losing memory when handling errors.
Georg Brandl116aa622007-08-15 14:28:22 +0000247
248
Georg Brandl60203b42010-10-06 10:11:56 +0000249.. c:function:: void PyMem_Del(void *p)
Georg Brandl116aa622007-08-15 14:28:22 +0000250
Georg Brandl60203b42010-10-06 10:11:56 +0000251 Same as :c:func:`PyMem_Free`.
Georg Brandl116aa622007-08-15 14:28:22 +0000252
253In addition, the following macro sets are provided for calling the Python memory
254allocator directly, without involving the C API functions listed above. However,
255note that their use does not preserve binary compatibility across Python
256versions and is therefore deprecated in extension modules.
257
Victor Stinner29bf27f2016-03-09 14:49:52 +0100258* ``PyMem_MALLOC(size)``
259* ``PyMem_NEW(type, size)``
260* ``PyMem_REALLOC(ptr, size)``
261* ``PyMem_RESIZE(ptr, type, size)``
262* ``PyMem_FREE(ptr)``
263* ``PyMem_DEL(ptr)``
Georg Brandl116aa622007-08-15 14:28:22 +0000264
265
Victor Stinner0507bf52013-07-07 02:05:46 +0200266Customize Memory Allocators
267===========================
268
269.. versionadded:: 3.4
270
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200271.. c:type:: PyMemAllocatorEx
Victor Stinner0507bf52013-07-07 02:05:46 +0200272
273 Structure used to describe a memory block allocator. The structure has
274 four fields:
275
276 +----------------------------------------------------------+---------------------------------------+
277 | Field | Meaning |
278 +==========================================================+=======================================+
279 | ``void *ctx`` | user context passed as first argument |
280 +----------------------------------------------------------+---------------------------------------+
281 | ``void* malloc(void *ctx, size_t size)`` | allocate a memory block |
282 +----------------------------------------------------------+---------------------------------------+
Victor Stinnerdb067af2014-05-02 22:31:14 +0200283 | ``void* calloc(void *ctx, size_t nelem, size_t elsize)`` | allocate a memory block initialized |
284 | | with zeros |
285 +----------------------------------------------------------+---------------------------------------+
Victor Stinner0507bf52013-07-07 02:05:46 +0200286 | ``void* realloc(void *ctx, void *ptr, size_t new_size)`` | allocate or resize a memory block |
287 +----------------------------------------------------------+---------------------------------------+
288 | ``void free(void *ctx, void *ptr)`` | free a memory block |
289 +----------------------------------------------------------+---------------------------------------+
290
Victor Stinnerdb067af2014-05-02 22:31:14 +0200291 .. versionchanged:: 3.5
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200292 The :c:type:`PyMemAllocator` structure was renamed to
293 :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added.
294
Victor Stinnerdb067af2014-05-02 22:31:14 +0200295
Victor Stinner0507bf52013-07-07 02:05:46 +0200296.. c:type:: PyMemAllocatorDomain
297
298 Enum used to identify an allocator domain. Domains:
299
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200300 .. c:var:: PYMEM_DOMAIN_RAW
Victor Stinner0507bf52013-07-07 02:05:46 +0200301
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200302 Functions:
303
304 * :c:func:`PyMem_RawMalloc`
305 * :c:func:`PyMem_RawRealloc`
306 * :c:func:`PyMem_RawCalloc`
307 * :c:func:`PyMem_RawFree`
308
309 .. c:var:: PYMEM_DOMAIN_MEM
310
311 Functions:
312
313 * :c:func:`PyMem_Malloc`,
314 * :c:func:`PyMem_Realloc`
315 * :c:func:`PyMem_Calloc`
316 * :c:func:`PyMem_Free`
317
318 .. c:var:: PYMEM_DOMAIN_OBJ
319
320 Functions:
321
322 * :c:func:`PyObject_Malloc`
323 * :c:func:`PyObject_Realloc`
324 * :c:func:`PyObject_Calloc`
325 * :c:func:`PyObject_Free`
Victor Stinner0507bf52013-07-07 02:05:46 +0200326
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200327.. c:function:: void PyMem_GetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200328
329 Get the memory block allocator of the specified domain.
330
331
Victor Stinnerd8f0d922014-06-02 21:57:10 +0200332.. c:function:: void PyMem_SetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)
Victor Stinner0507bf52013-07-07 02:05:46 +0200333
334 Set the memory block allocator of the specified domain.
335
336 The new allocator must return a distinct non-NULL pointer when requesting
337 zero bytes.
338
339 For the :c:data:`PYMEM_DOMAIN_RAW` domain, the allocator must be
340 thread-safe: the :term:`GIL <global interpreter lock>` is not held when the
341 allocator is called.
342
343 If the new allocator is not a hook (does not call the previous allocator),
344 the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the
345 debug hooks on top on the new allocator.
346
347
348.. c:function:: void PyMem_SetupDebugHooks(void)
349
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200350 Setup hooks to detect bugs in the Python memory allocator functions.
Victor Stinner0507bf52013-07-07 02:05:46 +0200351
352 Newly allocated memory is filled with the byte ``0xCB``, freed memory is
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200353 filled with the byte ``0xDB``.
354
355 Runtime checks:
Victor Stinner0507bf52013-07-07 02:05:46 +0200356
Victor Stinnerc4aec362016-03-14 22:26:53 +0100357 - Detect API violations, ex: :c:func:`PyObject_Free` called on a buffer
Victor Stinner0507bf52013-07-07 02:05:46 +0200358 allocated by :c:func:`PyMem_Malloc`
Victor Stinnerc4aec362016-03-14 22:26:53 +0100359 - Detect write before the start of the buffer (buffer underflow)
360 - Detect write after the end of the buffer (buffer overflow)
361 - Check that the :term:`GIL <global interpreter lock>` is held when
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100362 allocator functions of :c:data:`PYMEM_DOMAIN_OBJ` (ex:
363 :c:func:`PyObject_Malloc`) and :c:data:`PYMEM_DOMAIN_MEM` (ex:
364 :c:func:`PyMem_Malloc`) domains are called
Victor Stinner0507bf52013-07-07 02:05:46 +0200365
Victor Stinner0611c262016-03-15 22:22:13 +0100366 On error, the debug hooks use the :mod:`tracemalloc` module to get the
367 traceback where a memory block was allocated. The traceback is only
368 displayed if :mod:`tracemalloc` is tracing Python memory allocations and the
369 memory block was traced.
370
Victor Stinner34be8072016-03-14 12:04:26 +0100371 These hooks are installed by default if Python is compiled in debug
372 mode. The :envvar:`PYTHONMALLOC` environment variable can be used to install
373 debug hooks on a Python compiled in release mode.
374
375 .. versionchanged:: 3.6
376 This function now also works on Python compiled in release mode.
Victor Stinner0611c262016-03-15 22:22:13 +0100377 On error, the debug hooks now use :mod:`tracemalloc` to get the traceback
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100378 where a memory block was allocated. The debug hooks now also check
Victor Stinner9b46a572016-03-18 15:10:43 +0100379 if the GIL is held when functions of :c:data:`PYMEM_DOMAIN_OBJ` and
Victor Stinnerc2fc5682016-03-18 11:04:31 +0100380 :c:data:`PYMEM_DOMAIN_MEM` domains are called.
Victor Stinner0507bf52013-07-07 02:05:46 +0200381
382
Victor Stinner34be8072016-03-14 12:04:26 +0100383.. _pymalloc:
Victor Stinner0507bf52013-07-07 02:05:46 +0200384
Victor Stinner34be8072016-03-14 12:04:26 +0100385The pymalloc allocator
386======================
Victor Stinner0507bf52013-07-07 02:05:46 +0200387
Victor Stinner34be8072016-03-14 12:04:26 +0100388Python has a *pymalloc* allocator optimized for small objects (smaller or equal
389to 512 bytes) with a short lifetime. It uses memory mappings called "arenas"
390with a fixed size of 256 KB. It falls back to :c:func:`PyMem_RawMalloc` and
391:c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes.
392
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200393*pymalloc* is the default allocator of the :c:data:`PYMEM_DOMAIN_MEM` (ex:
INADA Naokif669fff2017-02-27 22:42:37 +0900394:c:func:`PyMem_Malloc`) and :c:data:`PYMEM_DOMAIN_OBJ` (ex:
Victor Stinnerf5c4b992016-04-22 16:26:23 +0200395:c:func:`PyObject_Malloc`) domains.
Victor Stinner34be8072016-03-14 12:04:26 +0100396
397The arena allocator uses the following functions:
Victor Stinner0507bf52013-07-07 02:05:46 +0200398
399* :c:func:`VirtualAlloc` and :c:func:`VirtualFree` on Windows,
400* :c:func:`mmap` and :c:func:`munmap` if available,
401* :c:func:`malloc` and :c:func:`free` otherwise.
402
Victor Stinner34be8072016-03-14 12:04:26 +0100403Customize pymalloc Arena Allocator
404----------------------------------
405
Victor Stinner0507bf52013-07-07 02:05:46 +0200406.. versionadded:: 3.4
407
408.. c:type:: PyObjectArenaAllocator
409
410 Structure used to describe an arena allocator. The structure has
411 three fields:
412
413 +--------------------------------------------------+---------------------------------------+
414 | Field | Meaning |
415 +==================================================+=======================================+
416 | ``void *ctx`` | user context passed as first argument |
417 +--------------------------------------------------+---------------------------------------+
418 | ``void* alloc(void *ctx, size_t size)`` | allocate an arena of size bytes |
419 +--------------------------------------------------+---------------------------------------+
420 | ``void free(void *ctx, size_t size, void *ptr)`` | free an arena |
421 +--------------------------------------------------+---------------------------------------+
422
423.. c:function:: PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator)
424
425 Get the arena allocator.
426
427.. c:function:: PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator)
428
429 Set the arena allocator.
430
431
Victor Stinner5ea4c062017-06-20 17:46:36 +0200432tracemalloc C API
433=================
434
435.. versionadded:: 3.7
436
437.. c:function: int PyTraceMalloc_Track(unsigned int domain, uintptr_t ptr, size_t size)
438
439 Track an allocated memory block in the :mod:`tracemalloc` module.
440
441 Return 0 on success, return ``-1`` on error (failed to allocate memory to
442 store the trace). Return ``-2`` if tracemalloc is disabled.
443
444 If memory block is already tracked, update the existing trace.
445
446.. c:function: int PyTraceMalloc_Untrack(unsigned int domain, uintptr_t ptr)
447
448 Untrack an allocated memory block in the :mod:`tracemalloc` module.
449 Do nothing if the block was not tracked.
450
451 Return ``-2`` if tracemalloc is disabled, otherwise return ``0``.
452
453
Georg Brandl116aa622007-08-15 14:28:22 +0000454.. _memoryexamples:
455
456Examples
457========
458
459Here is the example from section :ref:`memoryoverview`, rewritten so that the
460I/O buffer is allocated from the Python heap by using the first function set::
461
462 PyObject *res;
463 char *buf = (char *) PyMem_Malloc(BUFSIZ); /* for I/O */
464
465 if (buf == NULL)
466 return PyErr_NoMemory();
467 /* ...Do some I/O operation involving buf... */
Gregory P. Smith4b52ae82013-03-22 13:43:30 -0700468 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +0000469 PyMem_Free(buf); /* allocated with PyMem_Malloc */
470 return res;
471
472The same code using the type-oriented function set::
473
474 PyObject *res;
475 char *buf = PyMem_New(char, BUFSIZ); /* for I/O */
476
477 if (buf == NULL)
478 return PyErr_NoMemory();
479 /* ...Do some I/O operation involving buf... */
Gregory P. Smith4b52ae82013-03-22 13:43:30 -0700480 res = PyBytes_FromString(buf);
Georg Brandl116aa622007-08-15 14:28:22 +0000481 PyMem_Del(buf); /* allocated with PyMem_New */
482 return res;
483
484Note that in the two examples above, the buffer is always manipulated via
485functions belonging to the same set. Indeed, it is required to use the same
486memory API family for a given memory block, so that the risk of mixing different
487allocators is reduced to a minimum. The following code sequence contains two
488errors, one of which is labeled as *fatal* because it mixes two different
489allocators operating on different heaps. ::
490
491 char *buf1 = PyMem_New(char, BUFSIZ);
492 char *buf2 = (char *) malloc(BUFSIZ);
493 char *buf3 = (char *) PyMem_Malloc(BUFSIZ);
494 ...
495 PyMem_Del(buf3); /* Wrong -- should be PyMem_Free() */
496 free(buf2); /* Right -- allocated via malloc() */
497 free(buf1); /* Fatal -- should be PyMem_Del() */
498
499In addition to the functions aimed at handling raw memory blocks from the Python
Georg Brandl60203b42010-10-06 10:11:56 +0000500heap, objects in Python are allocated and released with :c:func:`PyObject_New`,
501:c:func:`PyObject_NewVar` and :c:func:`PyObject_Del`.
Georg Brandl116aa622007-08-15 14:28:22 +0000502
503These will be explained in the next chapter on defining and implementing new
504object types in C.
505