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: 5a676a34b98e
Choose a head ref
  • 6 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 24, 2013

  1. 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
    7f75695 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    1f73bd4 View commit details
    Browse the repository at this point in the history
  3. 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
  4. 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
    1
    Copy the full SHA
    0aee1ec View commit details
    Browse the repository at this point in the history
  5. 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
    51921c6 View commit details
    Browse the repository at this point in the history
  6. 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
    5a676a3 View commit details
    Browse the repository at this point in the history