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: ba83510fc0f7
Choose a base ref
...
head repository: joyent/libuv
compare: 339033afc01d
Choose a head ref
  • 1 commit
  • 13 files changed
  • 1 contributor

Commits on Jan 6, 2013

  1. unix: use uv__hrtime() internally

    This commit renames the various uv_hrtime() implementations to uv__hrtime().
    
    Libuv uses the high-res timer internally in performance-critical code paths.
    Calling the non-public version avoids going through the PLT when libuv is
    compiled as a shared object.
    
    The exported uv_hrtime() now has a single definition in src/unix/core.c that
    calls uv__hrtime().
    
    A future optimization is to lift the uv__hrtime() declarations into header
    files so they can be inlined at the call sites. Then again, linking with -flto
    should accomplish the same thing.
    bnoordhuis committed Jan 6, 2013
    Copy the full SHA
    339033a View commit details
    Browse the repository at this point in the history