Lines Matching refs:file
45 ``file`` and ``args`` fields. ``file`` is the program to execute. Since
171 A normal, newly spawned process has its own set of file descriptors, with 0,
173 may want to share file descriptors with the child. For example, perhaps your
175 file, but ignore ``stdout``. For this you'd like to have ``stderr`` of the
177 *inheriting* file descriptors. In this sample, we invoke the test program,
185 The file descriptors of the child process are set using the ``stdio`` field in
187 file descriptors being set. ``uv_process_options_t.stdio`` is an array of
272 but supports any streaming file-like objects. On Windows, the only object of
292 file-system they can be used for IPC between unrelated processes. The D-BUS_
322 point to a valid file (e.g. ``/tmp/echo.sock``). On Windows, ``name`` follows a
327 Sending file descriptors over pipes
330 The cool thing about domain sockets is that file descriptors can be exchanged
341 The worker process is quite simple, since the file-descriptor is handed over to
352 which new file descriptors get sent. It is important to set the ``ipc``
354 inter-process communication! Since the master will write the file handle to the
369 ``accept`` traditionally does is get a file descriptor (the client) from
370 another file descriptor (The listening socket). Which is exactly what we do
371 here. Fetch the file descriptor (``client``) from ``queue``. From this point
398 straightforward till here. The workers are launched and waiting for file