MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sys_sigsuspend

Function sys_sigsuspend

freebsd/kern/kern_sig.c:1515–1525  ·  view source on GitHub ↗

ARGSUSED */

Source from the content-addressed store, hash-verified

1513#endif
1514/* ARGSUSED */
1515int
1516sys_sigsuspend(struct thread *td, struct sigsuspend_args *uap)
1517{
1518 sigset_t mask;
1519 int error;
1520
1521 error = copyin(uap->sigmask, &mask, sizeof(mask));
1522 if (error)
1523 return (error);
1524 return (kern_sigsuspend(td, mask));
1525}
1526
1527int
1528kern_sigsuspend(struct thread *td, sigset_t mask)

Callers

nothing calls this directly

Calls 2

kern_sigsuspendFunction · 0.85
copyinFunction · 0.50

Tested by

no test coverage detected