sys/kern/subr_log.c
101
callout_init_mp(&logsoftc.sc_callout);
sys/kern/subr_log.c
102
fsetown(p->p_pid, &logsoftc.sc_sigio); /* signal process only */
sys/kern/subr_log.c
103
callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second,
sys/kern/subr_log.c
113
callout_terminate(&logsoftc.sc_callout);
sys/kern/subr_log.c
114
logsoftc.sc_state = 0;
sys/kern/subr_log.c
115
funsetown(&logsoftc.sc_sigio);
sys/kern/subr_log.c
140
atomic_set_int(&logsoftc.sc_state, LOG_RDWAIT);
sys/kern/subr_log.c
197
struct klist *klist = &logsoftc.sc_kqp.ki_note;
sys/kern/subr_log.c
217
struct klist *klist = &logsoftc.sc_kqp.ki_note;
sys/kern/subr_log.c
241
callout_reset(&logsoftc.sc_callout,
sys/kern/subr_log.c
246
KNOTE(&logsoftc.sc_kqp.ki_note, 0);
sys/kern/subr_log.c
247
if ((logsoftc.sc_state & LOG_ASYNC) && logsoftc.sc_sigio != NULL)
sys/kern/subr_log.c
248
pgsigio(logsoftc.sc_sigio, SIGIO, 0);
sys/kern/subr_log.c
249
if (logsoftc.sc_state & LOG_RDWAIT) {
sys/kern/subr_log.c
250
atomic_clear_int(&logsoftc.sc_state, LOG_RDWAIT);
sys/kern/subr_log.c
253
callout_reset(&logsoftc.sc_callout, hz / log_wakeups_per_second,
sys/kern/subr_log.c
287
atomic_set_int(&logsoftc.sc_state, LOG_ASYNC);
sys/kern/subr_log.c
289
atomic_clear_int(&logsoftc.sc_state, LOG_ASYNC);
sys/kern/subr_log.c
293
return (fsetown(*(int *)ap->a_data, &logsoftc.sc_sigio));
sys/kern/subr_log.c
296
*(int *)ap->a_data = fgetown(&logsoftc.sc_sigio);
sys/kern/subr_log.c
301
return (fsetown(-(*(int *)ap->a_data), &logsoftc.sc_sigio));
sys/kern/subr_log.c
305
*(int *)ap->a_data = -fgetown(&logsoftc.sc_sigio);
sys/kern/subr_log.c
82
} logsoftc;