theKernel 10.0
Loading...
Searching...
No Matches
MkTimeoutE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvmkkernel;
11
12// BEGIN-MkTimeoutE - created by 'jv_MqS.tcl -i NHI1_HOME/theKernel/c/gen/c_mkkernel.meta' - DO NOT change
13
16public enum MkTimeoutE {
17 INIT (900),
18 LONG (180), // ( 900/5 )
19 NORMAL (90 ), // ( 900/10 < 1 ? 1 : 900/10 )
20 SHORT (20 ), // ( 900/45 < 1 ? 1 : 900/45 )
21 SOCKET (10 ), // ( 900/90 < 1 ? 1 : 900/90 )
22 VERYSHORT (5 ), // ( 900/180 < 1 ? 1 : 900/180 )
23 DEFAULT (-1 ),
24 USER (-2 ),
25 MAX (-3 );
26 private final int value;
27 MkTimeoutE(int val) {this.value = val;}
28 public int get() { return value; }
29 public static MkTimeoutE set(int val) {
30 return MkKernel.TimeoutE_FromInt(val);
31 }
32}
33
34// END-MkTimeoutE - created by 'jv_MqS.tcl -i NHI1_HOME/theKernel/c/gen/c_mkkernel.meta' - DO NOT change
MkKernel PACKAGE - The package is the toplevel structure of the Programming-Language-Micro-Kernel (PL...
Java: enum MkTimeoutE → C-API
static native MkTimeoutE TimeoutE_FromInt(int value)
Java: [static] MkTimeoutE TimeoutE_FromInt(int value) → C-API return the MkTimeoutE from integer...