Skip to content

_context

Declaration

_context := {:_Context: 
                &_mem_allocator_default, 
                &_print_log_default, 
                &_os_abort_default,
            };

Description

Default implicit context. Implicit context is compiler internal global variable containing basic context for whole assembly. This variable is mutable and can be modified by user code. For example we can replace default memory allocator with custom one, this will affect all allocations made later.

Declared in: a.bl