libuv/include
Fedor Indutny b05a3ee4d1 pipe: allow queueing pending handles
Introduce `int uv_pipe_pending_count(uv_pipe_t*)` and
`uv_handle_type uv_pipe_pending_type(uv_pipe_t*)`. They should be
used in IPC pipe's read cb to accept incoming handles:

    int count = uv_pipe_pending_count(pipe);
    int i;
    for (i = 0; i < count; i++) {
      uv_handle_type type = uv_pipe_pending_type(pipe);
      /* ... */
      uv_accept(...);
    }
2014-03-04 00:34:29 +04:00
..
pthread-fixes.h build: switch to autotools 2013-07-02 01:21:16 +02:00
stdint-msvc2008.h build: switch to autotools 2013-07-02 01:21:16 +02:00
tree.h build: switch to autotools 2013-07-02 01:21:16 +02:00
uv-bsd.h build: switch to autotools 2013-07-02 01:21:16 +02:00
uv-darwin.h fsevents: report errors to user 2013-10-31 01:06:37 +04:00
uv-errno.h unix, windows: map ERANGE errno 2014-02-25 09:51:44 +01:00
uv-linux.h linux,darwin,win: link-local IPv6 addresses 2013-07-04 15:43:20 +02:00
uv-sunos.h build: switch to autotools 2013-07-02 01:21:16 +02:00
uv-unix.h pipe: allow queueing pending handles 2014-03-04 00:34:29 +04:00
uv-version.h Now working on v0.11.22 2014-02-26 18:04:24 -08:00
uv-win.h pipe: allow queueing pending handles 2014-03-04 00:34:29 +04:00
uv.h pipe: allow queueing pending handles 2014-03-04 00:34:29 +04:00