LcConfig PACKAGE - setup library and Programming-Language-Micro-Kernel (PLMK) … More...
Typedefs | |
typedef void(* | LcSetupThreadF) (MK_RT_ARGS_ONLY) |
prototype of the runtime-callback … | |
Functions | |
LC_EXTERN void | LcSetup (void) |
setup liblcconfig internal memory … | |
LC_EXTERN void | LcCleanup (void) |
cleanup liblcconfig internal memory … | |
LC_EXTERN void | LcSetupThreadCallback (LcSetupThreadF call) |
callback used to register a new runtime … | |
LcConfig PACKAGE - setup library and Programming-Language-Micro-Kernel (PLMK) …
For details about Setup and Cleanup usage refer to MkKernel_Setup_libmkkernel_C_API
typedef void( * LcSetupThreadF) (MK_RT_ARGS_ONLY) |
prototype of the runtime-callback …
Definition at line 515 of file LibLcConfig_lc.h.
LC_EXTERN void LcCleanup | ( | void | ) |
cleanup liblcconfig internal memory …
LcCleanup can only be called once and will be ignored if not called in the same thread as LcSetup. after a call to LcSetup the call to LcCleanup is possible again.
LC_EXTERN void LcSetup | ( | void | ) |
setup liblcconfig internal memory …
LcSetup can only be called once, additional call's will be ignored until a LcCleanup is called.
LC_EXTERN void LcSetupThreadCallback | ( | LcSetupThreadF | call | ) |
callback used to register a new runtime …
read more at: MkRuntimeCallbackAdd