#allocation #memory #observability

tracking-allocator

global allocator that provides hooks for tracking allocation events

6 releases (3 breaking)

0.4.0 Jul 1, 2022
0.3.0 May 12, 2022
0.2.0 May 11, 2022
0.1.2 Oct 5, 2021

#291 in Memory management

Download history 136/week @ 2023-12-11 57/week @ 2023-12-18 10/week @ 2024-01-01 267/week @ 2024-01-08 97/week @ 2024-01-15 150/week @ 2024-01-22 242/week @ 2024-01-29 30/week @ 2024-02-05 54/week @ 2024-02-12 49/week @ 2024-02-19 197/week @ 2024-02-26 14/week @ 2024-03-04 69/week @ 2024-03-11 146/week @ 2024-03-18 119/week @ 2024-03-25

349 downloads per month

MPL-2.0 license

43KB
536 lines

tracking-allocator

A GlobalAlloc-compatible allocator implementation that provides the ability to track allocation events.

examples

As allocators are specialized bits of code, we've included an example in the examples/ folder to show how to use tracking_allocator, rather than putting abbreviated snippets in the README. It is extensively documented, and explains the finer points of using this crate, and what can be acheived with it.

The actual Rust-level documentation is present, and should hopefully be clear and concise, but the example is meant to be how you learn to use the crate, with the Rust-level documentation as a rote "what's that type signature again?" style of reference.

When running the example, you should end up seeing output similar to this:

allocation -> addr=0x55e882b744f0 size=80 group_id=Some(0) tags=None
deallocation -> addr=0x55e882b74490
allocation -> addr=0x55e882b74550 size=12 group_id=Some(1) tags=None
allocation -> addr=0x55e882b74570 size=96 group_id=Some(1) tags=None
deallocation -> addr=0x55e882b74550
deallocation -> addr=0x55e882b74570

Dependencies

~0–280KB