# HG changeset patch # User Christian Humer # Date 1426641454 -3600 # Node ID 72afcc30c4a0f57e22d8d1ac8fc60479fc28c61e # Parent 470fb57cfb317ef72404bc1e2fab3c0b5f3fb187 Truffle: truffle compilation might result in a CancellationException. diff -r 470fb57cfb31 -r 72afcc30c4a0 graal/com.oracle.graal.truffle.hotspot/src/com/oracle/graal/truffle/hotspot/HotSpotTruffleRuntime.java --- a/graal/com.oracle.graal.truffle.hotspot/src/com/oracle/graal/truffle/hotspot/HotSpotTruffleRuntime.java Wed Mar 18 01:46:01 2015 +0100 +++ b/graal/com.oracle.graal.truffle.hotspot/src/com/oracle/graal/truffle/hotspot/HotSpotTruffleRuntime.java Wed Mar 18 02:17:34 2015 +0100 @@ -253,7 +253,7 @@ } else { // silently ignored } - } catch (InterruptedException e) { + } catch (InterruptedException | CancellationException e) { // silently ignored } }