Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.
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: joyent/libuv
base: c5d570ddba7b
Choose a base ref
...
head repository: joyent/libuv
compare: 41468050745b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 23, 2013

  1. unix: fix stream refcounting buglet

    Fix a buglet where uv_read_stop() would mark the handle as stopped even
    when there are in-progress write requests.
    
    This bug is unlikely to have affected anyone, the only case where it
    has a user-visible effect is when:
    
      a) the handle has been stopped for reading but not writing, and
      b) it's the last active handle in the event loop's pollset
    
    If both conditions are met, it's possible for the event loop to
    terminate prematurely.
    bnoordhuis committed May 23, 2013
    Copy the full SHA
    80f2f82 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2013

  1. unix: turn off POLLOUT after stream connect

    Clear the POLLOUT flag after we're done connecting. Not doing so isn't
    really harmful but it may cause the event loop to wake up more often
    than it has to.
    bnoordhuis committed May 24, 2013
    Copy the full SHA
    4146805 View commit details
    Browse the repository at this point in the history