Symbol: logsoftc
sys/kern/subr_log.c
214
klist_init_mutex(&logsoftc.sc_klist, &log_kq_mtx);
sys/kern/subr_log.c
215
sigio_init(&logsoftc.sc_sigio);
sys/kern/subr_log.c
216
timeout_set(&logsoftc.sc_tick, logtick, NULL);
sys/kern/subr_log.c
217
timeout_add_msec(&logsoftc.sc_tick, LOG_TICK);
sys/kern/subr_log.c
234
timeout_del(&logsoftc.sc_tick);
sys/kern/subr_log.c
236
klist_invalidate(&logsoftc.sc_klist);
sys/kern/subr_log.c
237
klist_free(&logsoftc.sc_klist);
sys/kern/subr_log.c
239
logsoftc.sc_state = 0;
sys/kern/subr_log.c
240
sigio_free(&logsoftc.sc_sigio);
sys/kern/subr_log.c
257
logsoftc.sc_state |= LOG_RDWAIT;
sys/kern/subr_log.c
264
error = sleep_finish(INFSLP, logsoftc.sc_state & LOG_RDWAIT);
sys/kern/subr_log.c
318
klist = &logsoftc.sc_klist;
sys/kern/subr_log.c
334
klist_remove(&logsoftc.sc_klist, kn);
sys/kern/subr_log.c
388
logsoftc.sc_need_wakeup = 1;
sys/kern/subr_log.c
399
if (!logsoftc.sc_need_wakeup)
sys/kern/subr_log.c
401
logsoftc.sc_need_wakeup = 0;
sys/kern/subr_log.c
409
state = logsoftc.sc_state;
sys/kern/subr_log.c
410
if (logsoftc.sc_state & LOG_RDWAIT)
sys/kern/subr_log.c
411
logsoftc.sc_state &= ~LOG_RDWAIT;
sys/kern/subr_log.c
414
knote(&logsoftc.sc_klist, 0);
sys/kern/subr_log.c
417
pgsigio(&logsoftc.sc_sigio, SIGIO, 0);
sys/kern/subr_log.c
421
timeout_add_msec(&logsoftc.sc_tick, LOG_TICK);
sys/kern/subr_log.c
442
logsoftc.sc_state |= LOG_ASYNC;
sys/kern/subr_log.c
444
logsoftc.sc_state &= ~LOG_ASYNC;
sys/kern/subr_log.c
450
return (sigio_setown(&logsoftc.sc_sigio, com, data));
sys/kern/subr_log.c
454
sigio_getown(&logsoftc.sc_sigio, com, data);
sys/kern/subr_log.c
84
} logsoftc;