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: 791a3c5e8169
Choose a base ref
...
head repository: joyent/libuv
compare: 7ba9f4ec63ce
Choose a head ref
  • 10 commits
  • 10 files changed
  • 1 contributor

Commits on Aug 23, 2013

  1. windows: make uv_spawn() failure more predictable

    * It will now report some types of errors synchronously, to bring it on
      par with uv-unix. Fixes #865.
    
    * Failure to find the target executable will now set up stdio pipes
      correctly, so the user can assume that when uv_spawn() returns 0 these
      pipes will never trigger asserts in libuv's guts.
    piscisaureus committed Aug 23, 2013
    Copy the full SHA
    ed82eae View commit details
    Browse the repository at this point in the history
  2. process: make the 'status' parameter for exit_cb an int64_t

    This means we no longer have to strip the high bit from the process exit
    code on Windows, which is problematic because an unhandled SEH exception
    can make a process exit with a status code that has the high bit set.
    piscisaureus committed Aug 23, 2013
    Copy the full SHA
    66ae0ff View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2013

  1. windows: report uv_process_t exit code correctly

    A stupid oversight in 66ae0ff would cause a random value to be reported
    as the exit code for a 'normally exited' child process.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    dd6f825 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    c3f9673 View commit details
    Browse the repository at this point in the history
  3. windows: make uv_fs_chmod() report errors correctly

    Before this patch libuv would attempt to use GetLastError() to retrieve
    the cause of NtQueryInformationFile failure, but that's not how it
    should be done.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    f667fa3 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    826e39d View commit details
    Browse the repository at this point in the history
  5. windows: add DDK definitions for more file information classes

    Copy some more structs from the NT DDK to winapi.h, so people can
    compile libuv without installing the DDK.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    bd673a0 View commit details
    Browse the repository at this point in the history
  6. windows: make it possible to use NtQueryVolumeInformationFile

    This commit adds bootrstap code, function signatures, struct definitions
    etc. to make it possible for libuv to use NtQueryVolumeInformationFile.
    
    Most of this comes from the NT DDK, which libuv mirrors so that people
    don't need the DDK to compile it.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    93e2da0 View commit details
    Browse the repository at this point in the history
  7. windows: squelch some compiler warnings

    This removes some compiler warnings caused by implicit type conversion
    from uint64_t to long, which would happen in the `FILETIME_TO_TIMESPEC`
    macro.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    bd88f8e View commit details
    Browse the repository at this point in the history
  8. windows: reimplement uv_fs_stat using NT syscalls

    This improves the output of uv_fs_stat:
      * `st_ctime` now contains the change time, not the creation time.
      * `st_ino` is now filled in with an fs-specific unique number.
      * `st_dev` is set to the serial number of the containing file system.
      * `st_blocks` now gets set.
      * `st_blksize` is no longer zero, but set to a reasonable default.
    piscisaureus committed Aug 24, 2013
    Copy the full SHA
    7ba9f4e View commit details
    Browse the repository at this point in the history