Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 07f4be8ae13c
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c39b5de47d23
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 7, 2016

  1. Copy the full SHA
    cb53186 View commit details
  2. 1
    Copy the full SHA
    c39b5de View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 truffle/src/main/ruby/core/rbconfig.rb
  2. +2 −2 truffle/src/main/ruby/core/signal.rb
8 changes: 4 additions & 4 deletions truffle/src/main/ruby/core/rbconfig.rb
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@
#
#
# Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without

# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
4 changes: 2 additions & 2 deletions truffle/src/main/ruby/core/signal.rb
Original file line number Diff line number Diff line change
@@ -40,8 +40,8 @@ module Signal
end
remove_const :SIGNAL_LIST

# replace CLD with CHLD since CLD is not recognized by in `new sun.mics.Signal("CLD")`
Numbers[20] = 'CHLD'
# replace CLD with CHLD since CLD is not recognized by in `new sun.misc.Signal("CLD")`
Numbers[Names['CLD']] = Numbers[Names['CHLD']]

@threads = {}
@handlers = {}