Launcher/libLauncher/src/main/java/ru/gravit/utils/NativeJVMHalt.java
2019-01-08 17:36:05 +04:00

15 lines
315 B
Java

package ru.gravit.utils;
import ru.gravit.utils.helper.LogHelper;
public final class NativeJVMHalt {
public NativeJVMHalt(int haltCode) {
this.haltCode = haltCode;
LogHelper.error("JVM exit code %d", haltCode);
halt();
}
public int haltCode;
public native void halt();
}