Message274133
Which patch are we talking about? In tracemalloc_track-3.patch, I see:
+ If memory block is already tracked, update the existing trace. */
+PyAPI_FUNC(int) _PyTraceMalloc_Track(void *ptr, size_t size);
+
+/* Untrack an allocated memory block in the tracemalloc module.
+ Do nothing if the block was not tracked.
+
+ Do nothing if tracemalloc is not tracing Python memory allocations. */
+PyAPI_FUNC(void) _PyTraceMalloc_Untrack(void *ptr); |
|
Date |
User |
Action |
Args |
2016-09-01 14:03:01 | pitrou | set | recipients:
+ pitrou, vstinner, njs, python-dev |
2016-09-01 14:03:01 | pitrou | set | messageid: <1472738581.46.0.466932596819.issue26530@psf.upfronthosting.co.za> |
2016-09-01 14:03:01 | pitrou | link | issue26530 messages |
2016-09-01 14:03:01 | pitrou | create | |
|