misc cleanup3
[nestedvm.git] / src / org / xwt / mips / UnixRuntime.java
index 8572ab9..5a11c46 100644 (file)
@@ -60,6 +60,7 @@ public abstract class UnixRuntime extends Runtime {
         }
     }
     
+    // NOTE: getDisplayName() is a Java2 function
     private static String posixTZ() {
         StringBuffer sb = new StringBuffer();
         TimeZone zone = TimeZone.getDefault();
@@ -208,7 +209,7 @@ public abstract class UnixRuntime extends Runtime {
             }
             if((options&WNOHANG)!=0) return 0;
             synchronized(waitNotification) {
-                try { waitNotification.wait(); } catch(InterruptedException e) { throw new Error(e); }
+                try { waitNotification.wait(); } catch(InterruptedException e) { /* ignore */ }
             }
         }
     }