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

Function sig_ffs

freebsd/kern/kern_sig.c:658–667  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656}
657
658int
659sig_ffs(sigset_t *set)
660{
661 int i;
662
663 for (i = 0; i < _SIG_WORDS; i++)
664 if (set->__bits[i])
665 return (ffs(set->__bits[i]) + (i * 32));
666 return (0);
667}
668
669static bool
670sigact_flag_test(const struct sigaction *act, int flag)

Callers 4

execsigsFunction · 0.85
reschedule_signalsFunction · 0.85
issignalFunction · 0.85
sig_drop_caughtFunction · 0.85

Calls 1

ffsFunction · 0.50

Tested by

no test coverage detected