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: 5b1422ba2b2a
Choose a base ref
...
head repository: joyent/libuv
compare: c16ed503b0cb
Choose a head ref
  • 8 commits
  • 4 files changed
  • 5 contributors

Commits on May 30, 2013

  1. Copy the full SHA
    b9eb402 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2013

  1. 2013.06.05, Version 0.10.10 (Stable)

    Changes since version 0.10.9:
    
    * include: document uv_update_time() and uv_now() (Ben Noordhuis)
    
    * linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
    
    * linux: fix memory leak in uv_cpu_info() error path (Ben Noordhuis)
    
    * linux: don't ignore OOM errors in uv_cpu_info() (Ben Noordhuis)
    
    * unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
    
    * darwin: make uv_fs_sendfile() respect length param (Wynn Wilkes)
    isaacs committed Jun 4, 2013
    Copy the full SHA
    0d95a88 View commit details
    Browse the repository at this point in the history
  2. Now working on v0.10.11

    isaacs committed Jun 4, 2013
    Copy the full SHA
    e9ae62d View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2013

  1. unix: unconditionally stop handle on close

    Make sure the handle is fully stopped by the time uv__stream_close()
    calls uv_read_stop(). Fixes the following assertion:
    
        Assertion failed: (!uv__io_active(&stream->io_watcher, UV__POLLOUT)
        || !ngx_queue_empty(&stream->write_completed_queue)
        || !ngx_queue_empty(&stream->write_queue)
        || stream->shutdown_req != NULL
        || stream->connect_req != NULL), function uv_read_stop,
        file ../deps/uv/src/unix/stream.c, line 1329.
    
    Fixes nodejs/node-v0.x-archive#5622.
    bnoordhuis committed Jun 5, 2013
    Copy the full SHA
    8e4b248 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    c8ffee3 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2013

  1. Copy the full SHA
    f84becc View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2013

  1. unix: remove overzealous assert

    Several node.js users are hitting this assert under what appear to be
    mostly benign conditions. In other words, it's unclear whether it's
    catching real bugs or just has wrong expectations.
    
    An aborting process is rather disruptive so I'm removing the assert
    from the stable branch and relanding it in the master branch.
    bnoordhuis committed Jun 7, 2013
    Copy the full SHA
    3ab3543 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/v0.10'

    Conflicts:
    	AUTHORS
    	ChangeLog
    	src/unix/stream.c
    	src/version.c
    bnoordhuis committed Jun 7, 2013
    Copy the full SHA
    c16ed50 View commit details
    Browse the repository at this point in the history