mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
Added words about what PyArena_Malloc() does.
This commit is contained in:
parent
cb9426b5f4
commit
6fd92dc44f
2 changed files with 17 additions and 5 deletions
|
@ -150,7 +150,7 @@ PyArena_Malloc(PyArena *arena, size_t size)
|
|||
arena->total_blocks++;
|
||||
arena->total_block_size += arena->a_cur->ab_size;
|
||||
if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE)
|
||||
arena->total_big_blocks++;
|
||||
++arena->total_big_blocks;
|
||||
#endif
|
||||
}
|
||||
return p;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue