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

Function linux_pause

freebsd/amd64/linux32/linux32_machdep.c:563–573  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

561}
562
563int
564linux_pause(struct thread *td, struct linux_pause_args *args)
565{
566 struct proc *p = td->td_proc;
567 sigset_t sigmask;
568
569 PROC_LOCK(p);
570 sigmask = td->td_sigmask;
571 PROC_UNLOCK(p);
572 return (kern_sigsuspend(td, sigmask));
573}
574
575int
576linux_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