Skip to content

Commit b29a03c

Browse files
committed
[GR-19691] Improve comment about the special empty SignalHandler
PullRequest: truffleruby/2902
2 parents c51e301 + 3d7a28f commit b29a03c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/truffleruby/platform/Signals.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919

2020
public class Signals {
2121

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). */
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 JVM (on Native Image it seems fine). See
24+
* https://bugs.openjdk.java.net/browse/JDK-8262905 */
2425
private static final SignalHandler IGNORE = sig -> {
2526
};
2627

0 commit comments

Comments
 (0)