Home
last modified time | relevance | path

Searched refs:newsigacts (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_fork.c370 struct sigacts *newsigacts; in do_fork() local
405 newsigacts = NULL; in do_fork()
407 newsigacts = sigacts_alloc(); in do_fork()
498 sigacts_copy(newsigacts, p1->p_sigacts); in do_fork()
499 p2->p_sigacts = newsigacts; in do_fork()
H A Dkern_exec.c373 struct sigacts *oldsigacts = NULL, *newsigacts = NULL; in do_execve() local
728 newsigacts = sigacts_alloc(); in do_execve()
729 sigacts_copy(newsigacts, oldsigacts); in do_execve()
736 p->p_sigacts = newsigacts; in do_execve()