We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee757e commit a240b3cCopy full SHA for a240b3c
Objects/obmalloc.c
@@ -468,7 +468,7 @@ _PyMem_ArenaAlloc(void *Py_UNUSED(ctx), size_t size)
468
if (ptr == MAP_FAILED)
469
return NULL;
470
assert(ptr != NULL);
471
- _PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc");
+ _PyAnnotateMemoryMap(ptr, size, "cpython:pymalloc");
472
return ptr;
473
#else
474
return malloc(size);
0 commit comments