We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c51e301 + 3d7a28f commit b29a03cCopy full SHA for b29a03c
src/main/java/org/truffleruby/platform/Signals.java
@@ -19,8 +19,9 @@
19
20
public class Signals {
21
22
- /** This is used instead of {@link SignalHandler.SIG_IGN} as {@code Signal.handle(sig, anyHandler)} seems to no
23
- * longer work after {@code Signal.handle(sig, SIG_IGN)} on (on Native Image it seems fine). */
+ /** This is used instead of {@link SignalHandler#SIG_IGN} as {@code Signal.handle(sig, anyHandler)} seems to no
+ * longer work after {@code Signal.handle(sig, SIG_IGN)} on JVM (on Native Image it seems fine). See
24
+ * https://bugs.openjdk.java.net/browse/JDK-8262905 */
25
private static final SignalHandler IGNORE = sig -> {
26
};
27
0 commit comments