Searched refs:block (Results 1 – 16 of 16) sorted by relevance
/libuv/docs/src/guide/ |
H A D | eventloops.rst | 17 is called, the loop **won't** block for i/o on this iteration. The semantics of 34 why the loop does not block on I/O. If on the other hand, you called
|
H A D | filesystem.rst | 20 The *synchronous* forms automatically get called (and **block**) if the 31 .. code-block:: c 41 .. code-block:: c 48 .. code-block:: c 125 .. code-block:: c 177 .. code-block:: c 200 asynchronously shows the power of evented I/O. The two writes won't block each 310 .. code-block:: c
|
H A D | basics.rst | 18 .. code-block:: python 50 subsystems. For example, a normal ``read`` call on a socket would block until 145 .. code-block:: c 215 and see how ``uv_run()`` will now block because a watcher is present. The idle
|
H A D | utilities.rst | 19 .. code-block:: c 29 .. code-block:: c 109 event loop will pause (**block**), which means your progress bar will freeze 143 .. code-block:: c 155 .. code-block:: c 171 .. code-block:: c
|
H A D | threads.rst | 20 loop and callback principles, threads are complete agnostic, they block as 81 .. code-block:: c
|
H A D | networking.rst | 174 .. code::block:: c
|
H A D | processes.rst | 190 .. code-block:: c
|
/libuv/docs/src/ |
H A D | design.rst | 51 on Windows. As part of a loop iteration the loop will block waiting for I/O activity on sockets 80 the loop will block for I/O. 83 block. These are the rules when calculating the timeout: 93 #. The loop blocks for I/O. At this point the loop will block for I/O for the duration calculated
|
H A D | loop.rst | 130 - UV_RUN_NOWAIT: Poll for i/o once but don't block if there are no 146 If this function was called before blocking for i/o, the loop won't block 192 that block the event loop for longer periods of time, where "longer" is
|
H A D | fs.rst | 578 size of the block device. 608 be used without `O_CREAT` if pathname refers to a block device. If the 609 block device is in use by the system (e.g., mounted), the open will fail
|
H A D | threading.rst | 166 same guard will block all callers except one (it's unspecified which one).
|
H A D | misc.rst | 135 uint64_t ru_inblock; /* block input operations */ 136 uint64_t ru_oublock; /* block output operations */ 850 The synchronous version may block indefinitely when not enough entropy
|
/libuv/src/unix/ |
H A D | internal.h | 121 #define SAVE_ERRNO(block) \ argument 124 do { block; } while (0); \
|
H A D | fsevents.c | 151 #define UV__FSEVENTS_PROCESS(handle, block) \ argument 173 block \
|
/libuv/ |
H A D | CONTRIBUTING.md | 72 the top of a scope (function, if/for/while-block).
|
H A D | ChangeLog | 4304 * unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé) 4476 * unix, windows: set non-block mode in uv_poll_init (Saúl Ibarra Corretgé) 4545 * unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis) 5529 * windows/fs: wrap multi-statement macros in do..while block (Bert Belder) 5535 * windows/fs: wrap multi-statement macros in do..while block (Bert Belder) 5660 * windows: wrap multi-statement macros in do..while block (Bert Belder)
|
Completed in 53 milliseconds