mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 03:59:14 +03:00
15 lines
307 B
Java
15 lines
307 B
Java
|
package ru.gravit.utils;
|
||
|
|
||
|
import ru.gravit.utils.helper.LogHelper;
|
||
|
|
||
|
public class NativeJVMHalt {
|
||
|
public NativeJVMHalt(int haltCode) {
|
||
|
this.haltCode = haltCode;
|
||
|
LogHelper.error("JVM exit code %d",haltCode);
|
||
|
halt();
|
||
|
}
|
||
|
|
||
|
public int haltCode;
|
||
|
public native void halt();
|
||
|
}
|