Lines Matching +full:threads +full:- +full:posix
3 .. _asyncio-subprocess:
12 ----------------------------------------
14 This section describes high-level async/await asyncio APIs to
111 used. See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>`
116 asyncio also has the following *low-level* APIs to work with subprocesses:
119 as well as the :ref:`Subprocess Transports <asyncio-subprocess-transports>`
120 and :ref:`Subprocess Protocols <asyncio-subprocess-protocols>`.
158 functions return instances of the *Process* class. *Process* is a high-level
186 This class is :ref:`not thread safe <asyncio-multithreading>`.
188 See also the :ref:`Subprocess and Threads <asyncio-subprocess-threads>`
247 On POSIX systems this method sends :py:data:`signal.SIGTERM` to the
257 On POSIX systems this method sends :py:data:`SIGKILL` to the child
299 A negative value ``-N`` indicates that the child was terminated
300 by signal ``N`` (POSIX only).
303 .. _asyncio-subprocess-threads:
305 Subprocess and Threads
306 ----------------------
308 Standard asyncio event loop supports running subprocesses from different threads by
315 :ref:`asyncio-watchers` for more info.
321 different threads without any limitation.
332 <asyncio-multithreading>` section.
336 --------
356 sys.executable, '-c', code,
372 written using low-level APIs.