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

Function linux_pause

freebsd/i386/linux/linux_machdep.c:528–538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526}
527
528int
529linux_pause(struct thread *td, struct linux_pause_args *args)
530{
531 struct proc *p = td->td_proc;
532 sigset_t sigmask;
533
534 PROC_LOCK(p);
535 sigmask = td->td_sigmask;
536 PROC_UNLOCK(p);
537 return (kern_sigsuspend(td, sigmask));
538}
539
540int
541linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap)

Callers

nothing calls this directly

Calls 1

kern_sigsuspendFunction · 0.85

Tested by

no test coverage detected