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: 1f52fc1c5a39
Choose a base ref
...
head repository: joyent/libuv
compare: f24335d4984b
Choose a head ref
  • 14 commits
  • 39 files changed
  • 1 contributor

Commits on Jan 6, 2013

  1. Copy the full SHA
    345eb63 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    87cbf8d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    0a06c2f View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    35b159a View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    a2bedc0 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    e62dd3c View commit details
    Browse the repository at this point in the history
  7. unix: fix up #if defined checks

    `#if FOO` (where FOO is undefined) is a legal construct in C89 and C99
    but gcc, clang and sparse complain loudly about it at higher warning
    levels.
    
    Squelch those warnings. Makes the code more consistent as well.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    edd1007 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    5b63285 View commit details
    Browse the repository at this point in the history
  9. linux: fix race in uv_resident_set_memory()

    uv_resident_set_memory() used a global buffer to read data into, which
    is a decidedly unsafe thing to do in a multi-threaded environment.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    fa9c577 View commit details
    Browse the repository at this point in the history
  10. test, bench: ANSI-fy function prototypes

    Replace `void f()` with `void f(void)`; the former means "a function
    that takes any number of arguments, including none" while the latter
    is what is actually intended: a function taking no arguments.
    
    The first form also isn't strictly conforming ANSI/ISO C.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    7ff6f29 View commit details
    Browse the repository at this point in the history
  11. test, bench: make functions/variables static

    Make functions and variables that are local to the compilation unit
    static. Remove what turns out to be unused.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    847182c View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    ccb96b6 View commit details
    Browse the repository at this point in the history
  13. test: simplify tcp_ref2b

    Said test doesn't need its own close callback, it can piggyback on the
    common close callback.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    fb725c0 View commit details
    Browse the repository at this point in the history
  14. test: fix #if defined checks

    Same as edd1007 but this time for the tests.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    f24335d View commit details
    Browse the repository at this point in the history