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: 7f756955b643
Choose a base ref
...
head repository: joyent/libuv
compare: 20a8e58adb2a
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 24, 2013

  1. Copy the full SHA
    1f73bd4 View commit details
    Browse the repository at this point in the history
  2. 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
    c283a9e View commit details
    Browse the repository at this point in the history
  3. windows: make it possible to use NtQueryVolumeInformationFile

    This commit adds bootstrap 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
    315d700 View commit details
    Browse the repository at this point in the history
  4. 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
    1cc6f96 View commit details
    Browse the repository at this point in the history
  5. 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
    20a8e58 View commit details
    Browse the repository at this point in the history