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: e0f64a8ecfd3
Choose a base ref
...
head repository: joyent/libuv
compare: cd2794c01fc8
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Aug 22, 2013

  1. fsevents: use shared FSEventStream

    It seems that number of simultaneously opened FSEventStreams is
    limited on OSX (i.e. you can have only fixed number of them on
    one running system), getting past through this limit will cause
    `FSEventStreamCreate` to return false and write following message
    to stderr:
    
        (CarbonCore.framework) FSEventStreamStart: register_with_server:
        ERROR: f2d_register_rpc() => (null) (-21)
    
    To prevent this, we must use only one shared FSEventStream with a
    paths for all uv_fsevent_t handles, and then filter out events for
    each handle using this paths again.
    
    See nodejs/node-v0.x-archive#5463
    indutny committed Aug 22, 2013
    Copy the full SHA
    cd2794c View commit details
    Browse the repository at this point in the history