Home
last modified time | relevance | path

Searched refs:after_in_parent (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/logging/
D__init__.py237 after_in_parent=_releaseLock)
274 after_in_parent=_after_at_fork_weak_calls)
/external/python/cpython3/Lib/test/
Dtest_posix.py215 os.register_at_fork(after_in_parent=b"Five")
221 os.register_at_fork(after_in_parent=None)
224 os.register_at_fork(before=None, after_in_parent=lambda: 3)
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h1846 PyObject *after_in_child, PyObject *after_in_parent);
1856 PyObject *after_in_parent = NULL; in os_register_at_fork() local
1859 &before, &after_in_child, &after_in_parent)) { in os_register_at_fork()
1862 return_value = os_register_at_fork_impl(module, before, after_in_child, after_in_parent); in os_register_at_fork()
/external/python/cpython3/Modules/
Dposixmodule.c5370 PyObject *after_in_child, PyObject *after_in_parent) in os_register_at_fork_impl() argument
5375 if (!before && !after_in_child && !after_in_parent) { in os_register_at_fork_impl()
5381 check_null_or_callable(after_in_parent, "after_in_parent")) { in os_register_at_fork_impl()
5392 if (register_at_forker(&interp->after_forkers_parent, after_in_parent)) { in os_register_at_fork_impl()
/external/python/cpython3/Doc/library/
Dos.rst3388 .. function:: register_at_fork(*, before=None, after_in_parent=None, \
3397 * *after_in_parent* is a function called from the parent process