Comment on Mimalloc Cigarette: Losing one week of my life catching a memory leak (Rust)parentComments−PaulDavisThe1st2yThis issue isn't really about per-structure allocators at all.It's about the idea that you are using per-thread allocators, and one of your threads allocates a lot of memory, then goes to sleep for a long time.Per-thread allocators are orthogonal to per-structure allocators.−the-smug-one2yI think you misunderstand what I'm saying, as what I'm describing allows for per-thread allocators.
Comments
This issue isn't really about per-structure allocators at all.
It's about the idea that you are using per-thread allocators, and one of your threads allocates a lot of memory, then goes to sleep for a long time.
Per-thread allocators are orthogonal to per-structure allocators.
I think you misunderstand what I'm saying, as what I'm describing allows for per-thread allocators.