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

Function sys_sigqueue

freebsd/kern/kern_sig.c:1896–1904  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1894};
1895#endif
1896int
1897sys_sigqueue(struct thread *td, struct sigqueue_args *uap)
1898{
1899 union sigval sv;
1900
1901 sv.sival_ptr = uap->value;
1902
1903 return (kern_sigqueue(td, uap->pid, uap->signum, &sv));
1904}
1905
1906int
1907kern_sigqueue(struct thread *td, pid_t pid, int signum, union sigval *value)

Callers

nothing calls this directly

Calls 1

kern_sigqueueFunction · 0.85

Tested by

no test coverage detected