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

Function sigqueue_init

freebsd/kern/kern_sig.c:291–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291void
292sigqueue_init(sigqueue_t *list, struct proc *p)
293{
294 SIGEMPTYSET(list->sq_signals);
295 SIGEMPTYSET(list->sq_kill);
296 SIGEMPTYSET(list->sq_ptrace);
297 TAILQ_INIT(&list->sq_list);
298 list->sq_proc = p;
299 list->sq_flags = SQ_INIT;
300}
301
302/*
303 * Get a signal's ksiginfo.

Callers 3

sigqueue_delete_set_procFunction · 0.85
proc_linkupFunction · 0.85
thread_linkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected