Lines Matching refs:it
8 A common idiom in Unix is for every process to do one thing and do it well. In
25 The simplest case is when you simply want to launch a process and know when it
37 ``options`` is implicitly initialized with zeros since it is a global
39 initialize it to null out all unused fields::
56 Note that it is important **not** to call ``uv_close`` before the exit callback.
107 does not affect it.
141 a handle and associate it with a loop. To listen for particular signals on
156 in that it will process only one event. UV_RUN_ONCE blocks if there are no
201 where flags can have several values. Use ``UV_IGNORE`` if it isn't going to be
274 Domain Socket`_, or derived from `mkfifo(1)`_, or it could actually be a
276 `UV_CREATE_PIPE` flag, it opts for creating a `socketpair(2)`_.
296 which clients can interact with it.
311 We name the socket ``echo.sock`` which means it will be created in the local
338 involved, and while only snippets are included in the book, it is recommended
339 to read the full code to really understand it.
342 it by the master.
368 Although ``accept`` seems odd in this code, it actually makes sense. What
394 get the number of CPUs so we can launch an equal number of workers. Again it is
402 ``main()``), that we accept the client socket and pass it along to the next
412 The ``uv_write2`` call handles all the abstraction and it is simply a matter of