theKernel 10.0
Loading...
Searching...
No Matches
MkRuntimeC_Info_JV_API

MkRuntimeC - various functions to print information about the rtMore...

+ Collaboration diagram for MkRuntimeC_Info_JV_API:

Functions

static native void jvmkkernel.MkRuntimeC.Log0 (MkObjectC fmtobj, int debug, String callfunc, int lvl)
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 
static void jvmkkernel.MkRuntimeC.Log0 ()
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 
static void jvmkkernel.MkRuntimeC.Log0 (MkObjectC fmtobj)
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 
static void jvmkkernel.MkRuntimeC.Log0 (MkObjectC fmtobj, int debug)
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 
static void jvmkkernel.MkRuntimeC.Log0 (MkObjectC fmtobj, int debug, String callfunc)
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 
JNIEXPORT void JNICALL Java_jvmkkernel_MkRuntimeC_Log0 (JNIEnv *env, jclass class, jobject fmtobj, jint debug, jstring callfunc, jint lvl)
  Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC
 

Detailed Description

MkRuntimeC - various functions to print information about the rt

Function Documentation

◆ Java_jvmkkernel_MkRuntimeC_Log0()

JNIEXPORT void JNICALL Java_jvmkkernel_MkRuntimeC_Log0 ( JNIEnv * env,
jclass class,
jobject fmtobj,
jint debug,
jstring callfunc,
jint lvl )

Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC

Definition at line 127 of file MkRuntimeC_jv.c.

127 {
129 MK_OBJN fmtobj_hdl = (MK_OBJN)pObj2Hdl__null_allow(env,fmtobj);
130 JavaErrorCheck;
131 if (callfunc == NULL) {
132 (*env)->CallStaticVoidMethod(env,MK(Class_MkKernel),MK(MID_MkKernel_getCallerStack));
133 }
134 if (callfunc == NULL) {callfunc = MK(pGetCallerProc)(env);}
135 if (debug > (jint)(MkRuntimeDebugGet())) {return;}
136 MK_STRN callfunc_ptr = (callfunc?(*env)->GetStringUTFChars(env,callfunc,NULL):NULL);
137 JavaErrorCheck;
138 MkRuntimeLog0(fmtobj_hdl, debug, callfunc_ptr, lvl);
139 if (callfunc_ptr) (*env)->ReleaseStringUTFChars(env,callfunc,callfunc_ptr);
140error:
141 return;
142}
const MK_STRB * MK_STRN
constant string pointer data-type
const struct MkObjectS * MK_OBJN
class-shortcut for const struct MkObjectS *, all const shortcut using the XX_YYYC syntax (only for pu...
static MK_I32 MkRuntimeDebugGet(void)
get the MkRuntimeS::debug value …
#define MkRuntimeLog0(...)
#define MkRtSetup_NULL
object header …

◆ Log0() [1/5]

static void jvmkkernel.MkRuntimeC.Log0 ( )
static

Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC

Definition at line 82 of file MkRuntimeC.java.

82 {
83 Log0 ((MkObjectC) null, 0, null, 0);
84 }
MkObjectC(long mng, boolean dummy)
This contructor is used internal to create an java-object for an already existing libmqmsgque-object.
static void Log0()
Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?...
+ Here is the caller graph for this function:

◆ Log0() [2/5]

static void jvmkkernel.MkRuntimeC.Log0 ( MkObjectC fmtobj)
static

◆ Log0() [3/5]

static void jvmkkernel.MkRuntimeC.Log0 ( MkObjectC fmtobj,
int debug )
static

◆ Log0() [4/5]

static void jvmkkernel.MkRuntimeC.Log0 ( MkObjectC fmtobj,
int debug,
String callfunc )
static

Java: [static] MkRuntimeC.Log0(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?) C-API
log the MkRuntimeC

Definition at line 97 of file MkRuntimeC.java.

97 {
98 Log0 (fmtobj, debug, callfunc, 0);
99 }

◆ Log0() [5/5]

static native void jvmkkernel.MkRuntimeC.Log0 ( MkObjectC fmtobj,
int debug,
String callfunc,
int lvl )
static