mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #18874: tracemalloc: Comment the trace_t structure
This commit is contained in:
parent
8e3708d88b
commit
7a5be14dd8
1 changed files with 4 additions and 0 deletions
|
@ -93,8 +93,12 @@ typedef struct {
|
|||
static PyObject *unknown_filename = NULL;
|
||||
static traceback_t tracemalloc_empty_traceback;
|
||||
|
||||
/* Trace of a memory block */
|
||||
typedef struct {
|
||||
/* Size of the memory block in bytes */
|
||||
size_t size;
|
||||
|
||||
/* Traceback where the memory block was allocated */
|
||||
traceback_t *traceback;
|
||||
} trace_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue