You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Tree itself still owns a tsk_tree_t on the stack.
However, in release builds, this model breaks.
The API type that is the Deref target takes a pointer
to the tsk_tree_t.
In release builds, that pointer is invalidated, presumably
due to final moves of all the bits into structs.
To get this right, we have to do what we do for tables,
which is to use malloc'd pointers to tsk_foo via MBox.