Thread.Context

class Thread
package static
struct Context {
void* bstack;
void* tstack;
Context* within;
Context* next;
Context* prev;
}

Members

Variables

ehContext
void* ehContext;

Slot for the EH implementation to keep some state for each stack (will be necessary for exception chaining, etc.). Opaque as far as we are concerned here.

Suggestion Box / Bug Report