Constant SPAWN_HOOKS

Source
const SPAWN_HOOKS: LocalKey<Cell<SpawnHooks>>;
Expand description

A thread local linked list of spawn hooks.

It is a linked list of Arcs, such that it can very cheaply be inhereted by spawned threads.

(That technically makes it a set of linked lists with shared tails, so a linked tree.)