home *** CD-ROM | disk | FTP | other *** search
- package sun.misc;
-
- // $FF: renamed from: sun.misc.VM
- public class class_0 {
- private static boolean suspended = false;
- public static final int STATE_GREEN = 1;
- public static final int STATE_YELLOW = 2;
- public static final int STATE_RED = 3;
-
- public static boolean threadsSuspended() {
- return suspended;
- }
-
- public static boolean allowThreadSuspension(ThreadGroup var0, boolean var1) {
- return var0.allowThreadSuspension(var1);
- }
-
- public static boolean suspendThreads() {
- suspended = true;
- return true;
- }
-
- public static void unsuspendThreads() {
- suspended = false;
- }
-
- public static void unsuspendSomeThreads() {
- }
-
- public static final int getState() {
- return 1;
- }
-
- public static void registerVMNotification(VMNotification var0) {
- }
-
- public static void asChange(int var0, int var1) {
- }
-
- public static void asChange_otherthread(int var0, int var1) {
- }
- }
-