theKernel 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard
c - tcl - py - jv - cc
Loading...
Searching...
No Matches
MkKernel_Setup_libmkkernel_C_API

MkKernel PACKAGE - Setup und Cleanup the ccmkkernelMore...

+ Collaboration diagram for MkKernel_Setup_libmkkernel_C_API:

Functions

MK_EXTERN void libmkkernel::MkSetup (void)
 setup ccmkkernel internal memory …
 
MK_EXTERN void libmkkernel::MkCleanup (void)
 cleanup ccmkkernel internal memory …
 
MK_EXTERN bool libmkkernel::MkHasThread (void)
 
MK_EXTERN bool libmkkernel::MkHasFork (void)
 

Variables

MK_EXTERN_DATA bool libmkkernel::MkCleanupActive
 signal that code was triggert by MkCleanup
 

Detailed Description

MkKernel PACKAGE - Setup und Cleanup the ccmkkernel

Initializing a ccmkkernel library depends on the target language and the specific nature of the Programming-Language-Micro-Kernel (PLMK).

In general it is required to call a Setup style funtion as FIRST argument because of:

If more than one META library is called only the toplevel Setup is required:

shared library detail

A new ccmkkernel library is initialized with Setup and released again with Cleanup. Both functions are automatically called upon loading and unloading of the shared library.

Example: Definition (C) of the ccmkkernel library startup functions

MK_EXTERN void MK_DECL MkSetup (void) __attribute__ ((constructor(200)));
MK_EXTERN void MK_DECL MkCleanup (void) __attribute__ ((destructor(200)));
#define MK_DECL
#define MK_EXTERN
static library
MK_EXTERN void MkCleanup(void)
cleanup ccmkkernel internal memory …
MK_EXTERN void MkSetup(void)
setup ccmkkernel internal memory …

In the Programming-Language-Micro-Kernel (PLMK), a type is defined for each thread, which means that the new ccmkkernel library must be known when the thread starts. This is not a problem as long as the external ccmkkernel library is linked to the application. However, if dlopen is used to load the ccmkkernel library, the current restriction is that the new data type from the ccmkkernel library has not been defined in all existing threads.

The point in time when a library is loaded depends heavily on the programming language used.

‍To avoid all the problems call the Setup directly at the start of the main program.

Example: Start of the LcConfigServer application from the example/cs directory

static void Main(string[] argv) {
LcConfig.Setup();
var srv = MqFactoryCT<LcConfigServer>.Add().New();
try {
srv.LinkCreate(argv);
srv.ProcessEvent(MqWaitOnEventE.FOREVER);
} catch (Exception e) {
srv.ErrorCatch(e);
}
srv.Exit();
}

Function Documentation

◆ MkCleanup()

MK_EXTERN void libmkkernel::MkCleanup ( void )

cleanup ccmkkernel internal memory …

MkCleanup will only be recognized once and will be ignored if not called in the same thread as MkSetup. After a call to MkSetup the call to MkCleanup is possible again.

‍The public MkCleanup is just a placeholder, the internal MkCleanup is always called even if the public MkCleanup is not called.

Attention
during cleanup objects will be deleted too -> the language interpreter have to be active

◆ MkHasFork()

MK_EXTERN bool libmkkernel::MkHasFork ( void )

◆ MkHasThread()

MK_EXTERN bool libmkkernel::MkHasThread ( void )

◆ MkSetup()

MK_EXTERN void libmkkernel::MkSetup ( void )

setup ccmkkernel internal memory …

MkSetup will only be recognized once, additional call's will be ignored until a MkCleanup is called.

‍A call to the public MkSetup is required if dlopen and thread is used.

Variable Documentation

◆ MkCleanupActive

MK_EXTERN_DATA bool libmkkernel::MkCleanupActive

signal that code was triggert by MkCleanup

Definition at line 2290 of file LibMkKernel_mk.h.