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

Function linux_pause

freebsd/amd64/linux/linux_machdep.c:197–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197int
198linux_pause(struct thread *td, struct linux_pause_args *args)
199{
200 struct proc *p = td->td_proc;
201 sigset_t sigmask;
202
203 LINUX_CTR(pause);
204
205 PROC_LOCK(p);
206 sigmask = td->td_sigmask;
207 PROC_UNLOCK(p);
208 return (kern_sigsuspend(td, sigmask));
209}
210
211int
212linux_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