IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
Shutdown.cs
Go to the documentation of this file.
1using System;
2
4{
5
9 static class Shutdown
10 {
11
15 public static void beforeHalt()
16 {
17
18 }
19
23 public static void halt0(int status)
24 {
25 Environment.Exit(status);
26 }
27
31 public static void runAllFinalizers()
32 {
33
34 }
35
36 }
37
38}
Implements the native methods for 'java.lang.Shutdown'.
Definition Shutdown.cs:10
static void runAllFinalizers()
Implements the native method 'runAllFinalizers'.
Definition Shutdown.cs:31
static void beforeHalt()
Implements the native method 'beforeHalt'.
Definition Shutdown.cs:15
static void halt0(int status)
Implements the native method 'halt0'.
Definition Shutdown.cs:23