Navigation Menu

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: e3a657c662a6
Choose a base ref
...
head repository: joyent/libuv
compare: 3d4099ebcbdf
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Jul 9, 2013

  1. 2013.07.10, Version 0.10.12 (Stable)

    Changes since version 0.10.11:
    
    * linux: add support for MIPS (Andrei Sedoi)
    
    * windows: uv_spawn shouldn't reject reparse points (Bert Belder)
    
    * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
    
    * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
    
    * build: `all` now builds static and dynamic lib (Ben Noordhuis)
    
    * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben
      Noordhuis)
    isaacs committed Jul 9, 2013
    Copy the full SHA
    58a4622 View commit details
    Browse the repository at this point in the history
  2. Now working on v0.10.13

    isaacs committed Jul 9, 2013
    Copy the full SHA
    3b4e0a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2013

  1. unix, windows: fix uv_fs_chown() function prototype

    Before this commit, uv_fs_chown() and uv_fs_fchown() took the uid and
    gid as signed integers which is wrong because uid_t and gid_t are
    unsigned on most all platforms and IDs that don't fit in a signed
    integer do exist.
    
    This is not an ABI change because the size of the uid and gid arguments
    do not change, only their sign.
    
    On Windows, uv_uid_t and uv_gid_t are typedef'd as unsigned char for
    reasons that are unclear. It doesn't matter: they get cast to ints when
    used as function arguments. The arguments themselves are unused.
    
    Partial fix for nodejs/node-v0.x-archive#5890.
    bnoordhuis committed Jul 23, 2013
    Copy the full SHA
    d779eb5 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2013

  1. 2013.07.26, Version 0.10.13 (Stable)

    Changes since version 0.10.12:
    
    * unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)
    tjfontaine committed Jul 25, 2013
    Copy the full SHA
    381312e View commit details
    Browse the repository at this point in the history
  2. Now working on v0.10.14

    tjfontaine committed Jul 25, 2013
    Copy the full SHA
    2744e1e View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'origin/v0.10'

    Conflicts:
    	AUTHORS
    	ChangeLog
    	src/version.c
    	src/win/fs.c
    bnoordhuis committed Jul 25, 2013
    Copy the full SHA
    3d4099e View commit details
    Browse the repository at this point in the history