Changeset 13530
- Timestamp:
- 08/22/11 09:52:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/LispThread.java
r13461 r13530 42 42 import java.util.concurrent.atomic.AtomicInteger; 43 43 44 import java.text.MessageFormat; 45 44 46 public final class LispThread extends LispObject 45 47 { … … 99 101 // Might happen. 100 102 } 103 catch (ProcessingTerminated e) { 104 System.exit(e.getStatus()); 105 } 101 106 catch (Throwable t) { // any error: process thread interrupts 102 107 if (isInterrupted()) { 103 108 processThreadInterrupts(); 104 109 } 110 String msg 111 = MessageFormat.format("Ignoring uncaught exception {0}.", 112 t.toString()); 113 Debug.warn(msg); 105 114 } 106 115 finally {
Note: See TracChangeset
for help on using the changeset viewer.