const IS_THREAD_IN_ALLOCATION_TRACKER: LocalKey<Cell<bool>>;
Expand description

Used to prevent re-entrancy when tracking allocations.

Tracking an allocation (taking its backtrace etc) can itself create allocations. We don’t want to track those allocations, or we will have infinite recursion.