| 247 | sigset_t fastblock_mask; |
| 248 | |
| 249 | static void |
| 250 | sigqueue_start(void) |
| 251 | { |
| 252 | ksiginfo_zone = uma_zcreate("ksiginfo", sizeof(ksiginfo_t), |
| 253 | NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); |
| 254 | uma_prealloc(ksiginfo_zone, preallocate_siginfo); |
| 255 | p31b_setcfg(CTL_P1003_1B_REALTIME_SIGNALS, _POSIX_REALTIME_SIGNALS); |
| 256 | p31b_setcfg(CTL_P1003_1B_RTSIG_MAX, SIGRTMAX - SIGRTMIN + 1); |
| 257 | p31b_setcfg(CTL_P1003_1B_SIGQUEUE_MAX, max_pending_per_proc); |
| 258 | SIGFILLSET(fastblock_mask); |
| 259 | SIG_CANTMASK(fastblock_mask); |
| 260 | } |
| 261 | |
| 262 | ksiginfo_t * |
| 263 | ksiginfo_alloc(int wait) |
nothing calls this directly
no test coverage detected