Searched refs:daemonic (Results 1 – 6 of 6) sorted by relevance
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
D | multiprocessing_shim.py | 64 def daemon(self, daemonic): argument 65 self._proc.daemon = daemonic
|
/external/python/cpython2/Lib/multiprocessing/ |
D | process.py | 178 def daemon(self, daemonic): argument 183 self._daemonic = daemonic
|
/external/python/cpython2/Lib/ |
D | threading.py | 1016 def daemon(self, daemonic): argument 1021 self.__daemonic = daemonic 1026 def setDaemon(self, daemonic): argument 1027 self.daemon = daemonic
|
/external/iproute2/doc/ |
D | nstat.sgml | 64 of daemonic <tt/Xstat/ and kernel SNMP tables and does not
|
/external/python/cpython2/Doc/library/ |
D | threading.rst | 80 includes daemonic threads, dummy thread objects created by 267 If you want your threads to stop gracefully, make them non-daemonic and 277 daemonic, and cannot be :meth:`join`\ ed. They are never deleted, since it is
|
D | multiprocessing.rst | 414 When a process exits, it attempts to terminate all of its daemonic child 417 Note that a daemonic process is not allowed to create child processes. 418 Otherwise a daemonic process would leave its children orphaned if it gets 421 terminated (and not joined) if non-daemonic processes have exited. 565 consumed. Similarly, if the child process is non-daemonic then the parent 566 process may hang on exit when it tries to join all its non-daemonic children. 2315 put items on the queue will terminate. Remember also that non-daemonic
|