Message274133
| Author |
pitrou |
| Recipients |
njs, pitrou, python-dev, vstinner |
| Date |
2016年09月01日.14:03:01 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1472738581.46.0.466932596819.issue26530@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
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); |
|
History
|
|---|
| 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 |
|