static pTCB TaskInit( pTCB ptcb, char *name, int siz )
Initialize a task control block TCBt struct and the global
executive context. Give the task its *name and establish a stack
of at least siz bytes.
Source: ../mlexec.c.html#TaskInit
The task scheduler executive spawns task objects and initiates
one-shot function calls by looking up generic VAFNC function
addresses in the pexec ->fnc PLt pointer list table.
This table is loaded here by exhausting the entries provided by
GetFncTblEntry();
Source: ../mlexec.c.html#FncTblCreate