Home
last modified time | relevance | path

Searched refs:_after_fork (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
Dqueues.py71 self._after_fork()
74 register_after_fork(self, Queue._after_fork)
84 self._after_fork()
86 def _after_fork(self): member in Queue
Dsynchronize.py80 def _after_fork(obj): function
81 obj._semlock._after_fork()
82 register_after_fork(self, _after_fork)
Dmanagers.py735 util.register_after_fork(self, BaseProxy._after_fork)
823 def _after_fork(self): member in BaseProxy
/external/python/cpython3/Lib/multiprocessing/
Dsynchronize.py71 def _after_fork(obj): function
72 obj._semlock._after_fork()
73 util.register_after_fork(self, _after_fork)
Dqueues.py55 register_after_fork(self, Queue._after_fork)
67 def _after_fork(self): member in Queue
Dmanagers.py785 util.register_after_fork(self, BaseProxy._after_fork)
877 def _after_fork(self): member in BaseProxy
/external/python/cpython3/Lib/
Dthreading.py1452 def _after_fork(): function
1506 _os.register_at_fork(after_in_child=_after_fork)
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a6.rst658 Fix threading._after_fork(): if fork was not called by a thread spawned by
659 threading.Thread, threading._after_fork() now creates a _MainThread instance
/external/python/cpython2/Lib/
Dthreading.py1202 def _after_fork(): function