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: a3963883b81e
Choose a base ref
...
head repository: joyent/libuv
compare: cd10637d0b3c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 22, 2013

  1. unix: silence STATIC_ASSERT compiler warnings

    Fix the following two warnings:
    
      src/unix/core.c:74:1: warning: ISO C90 forbids array
      'static_assert_failed' whose size can't be evaluated [-Wvla]
      src/unix/core.c:76:1: warning: ISO C90 forbids array
      'static_assert_failed' whose size can't be evaluated [-Wvla]
    bnoordhuis committed Apr 22, 2013
    Copy the full SHA
    105e4dc View commit details
    Browse the repository at this point in the history
  2. linux: don't use fopen() in uv_resident_set_memory()

    RSS is a reflection of the number of pages that a process has mapped.
    glibc implements fopen() in terms of mmap() which means that trying
    to read the number of mapped pages changes it. Switch to open().
    bnoordhuis committed Apr 22, 2013
    Copy the full SHA
    cd10637 View commit details
    Browse the repository at this point in the history