--- doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html 2017/06/27 22:19:19 3293 +++ doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html 2017/06/27 23:29:31 3294 @@ -36,6 +36,10 @@ Check whether two arrays are equal. + fork() + Creates new execution instances. + + dec() Decrements the passed integer variable by one. @@ -319,6 +323,23 @@ + %NKSP_CALLBACK_CHILD_ID[] + + Reflects the callback IDs of all child threads which the current + script callback instance spawned by calling function fork(). + See the latter function for details about this array variable. + + + + $NKSP_CALLBACK_PARENT_ID + + If the current execution thread is a child thread spawned by a fork() + call before, then this variable reflects the callback ID of the parent + thread which created this child thread. Otherwise this variable is zero. + See function fork() for more details about this variable. + + + $NKSP_REAL_TIMER Returns the current time stamp in reality (in microseconds). You may read this variable from time to time to take