36 |
<td>Check whether two arrays are equal.</td> |
<td>Check whether two arrays are equal.</td> |
37 |
</tr> |
</tr> |
38 |
<tr> |
<tr> |
39 |
|
<td><code>fork()</code></td> |
40 |
|
<td>Creates new execution instances.</td> |
41 |
|
</tr> |
42 |
|
<tr> |
43 |
<td><code lang="nksp">dec()</code></td> |
<td><code lang="nksp">dec()</code></td> |
44 |
<td>Decrements the passed integer variable by one.</td> |
<td>Decrements the passed integer variable by one.</td> |
45 |
</tr> |
</tr> |
323 |
</td> |
</td> |
324 |
</tr> |
</tr> |
325 |
<tr> |
<tr> |
326 |
|
<td><code>%NKSP_CALLBACK_CHILD_ID[]</code></td> |
327 |
|
<td> |
328 |
|
Reflects the callback IDs of all child threads which the current |
329 |
|
script callback instance spawned by calling function <code>fork()</code>. |
330 |
|
See the latter function for details about this array variable. |
331 |
|
</td> |
332 |
|
</tr> |
333 |
|
<tr> |
334 |
|
<td><code>$NKSP_CALLBACK_PARENT_ID</code></td> |
335 |
|
<td> |
336 |
|
If the current execution thread is a child thread spawned by a <code>fork()</code> |
337 |
|
call before, then this variable reflects the callback ID of the parent |
338 |
|
thread which created this child thread. Otherwise this variable is zero. |
339 |
|
See function <code>fork()</code> for more details about this variable. |
340 |
|
</td> |
341 |
|
</tr> |
342 |
|
<tr> |
343 |
<td><code>$NKSP_REAL_TIMER</code></td> |
<td><code>$NKSP_REAL_TIMER</code></td> |
344 |
<td>Returns the current time stamp in reality (in microseconds). You may |
<td>Returns the current time stamp in reality (in microseconds). You may |
345 |
read this variable from time to time to take |
read this variable from time to time to take |