theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ShmLockE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3ShmLockE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3ShmLockE {
17 UNLOCK (1),
18 LOCK (2),
19 SHARED (4),
21 private final int value;
22 Sq3ShmLockE(int val) {this.value = val;}
23 public int get() { return value; }
24 public static Sq3ShmLockE set(int val) {
25 return Sq3Lite.ShmLockE_FromInt(val);
26 }
27}
28
29// END-Sq3ShmLockE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
Sq3Lite PACKAGE - toplevel package of the Programming-Language-Micro-Kernel (PLMK) …
Definition Sq3Lite.java:125
Java: enum Sq3ShmLockE → C-API
static native Sq3ShmLockE ShmLockE_FromInt(int value)
Java: [static] Sq3ShmLockE ShmLockE_FromInt(int value) → C-API return the Sq3ShmLockE from integ...