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.
1 parent 3c9ee7b commit 1993f47Copy full SHA for 1993f47
core/src/main/java/org/jruby/RubySignal.java
@@ -68,15 +68,15 @@ public static Map<String, Integer> list() {
68
continue;
69
70
// replace CLD with CHLD value
71
- int longValue = s.intValue();
+ int signo = s.intValue();
72
if (s == Signal.SIGCLD)
73
- longValue = Signal.SIGCHLD.intValue();
+ signo = Signal.SIGCHLD.intValue();
74
75
// omit unsupported signals
76
- if (longValue >= 20000)
+ if (signo >= 20000)
77
78
79
- signals.put(s.description().substring("SIG".length()), longValue);
+ signals.put(s.description().substring("SIG".length()), signo);
80
}
81
82
return signals;
0 commit comments