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: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cf0480f6095c
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7be4315997ff
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 29, 2015

  1. Copy the full SHA
    2399e9e View commit details
  2. Copy the full SHA
    dddd972 View commit details
  3. add #pipe function

    chuckremes committed Jan 29, 2015
    Copy the full SHA
    037cd57 View commit details
  4. Copy the full SHA
    7be4315 View commit details
Showing with 138 additions and 127 deletions.
  1. +2 −2 kernel/common/errno.rb
  2. +131 −125 kernel/common/io.rb
  3. +4 −0 kernel/platform/ffi.rb
  4. +1 −0 kernel/platform/posix.rb
4 changes: 2 additions & 2 deletions kernel/common/errno.rb
Original file line number Diff line number Diff line change
@@ -18,10 +18,10 @@ def self.handle(additional = nil)
end

def self.errno
FFI::Platform::POSIX.errno
FFI.errno
end

def self.eql?(code)
FFI::Platform::POSIX.errno == code
FFI.errno == code
end
end
Loading