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
base: 5a231c670f80^
Choose a base ref
...
head repository: rubinius/rubinius
compare: 6216f2d8199e
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Dec 25, 2015

  1. Test IO#read_nonblock raising EAGAINWaitReadable

    IO#read_nonblock is supposed to raise IO::EAGAINWaitReadable instead of
    a regular Errno::EAGAIN error.
    Yorick Peterse committed Dec 25, 2015
    Copy the full SHA
    5a231c6 View commit details
    Browse the repository at this point in the history
  2. Added spec for IO#write_nonblock raising

    This tests for IO#write_nonblock raising IO::EAGAINWaitWritable when an
    operation would block (instead of just raising Errno::EAGAIN).
    Yorick Peterse committed Dec 25, 2015
    Copy the full SHA
    f34b3b6 View commit details
    Browse the repository at this point in the history
  3. Use correct exceptions in IO#(read/write)_nonblock

    IO#read_nonblock should raise IO::EAGAINWaitReadable (or
    IO::EWOULDBLOCKWaitReadable) while
    IO#write_nonblock should raise IO::EAGAINWaitWritable (or
    IO::EWOULDBLOCKWaitWritable).
    Yorick Peterse committed Dec 25, 2015
    Copy the full SHA
    e577479 View commit details
    Browse the repository at this point in the history
  4. Added EINPROGRESS Wait classes

    These will be used by rubysl-socket for connecting a socket in a
    non-blocking manner.
    Yorick Peterse committed Dec 25, 2015
    Copy the full SHA
    6216f2d View commit details
    Browse the repository at this point in the history