CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/11/25 23:20:19
Modified files:
sys/dev/wscons : wsdisplay.c
Log message:
While emulating the bell, wsdisplay could end up sleeping when reaching
down to wsmux. This does not work since we're in interrupt context, as
pointed out by witness.
Instead, defer the work to a task which in turn will execute in process
context.
Problem reported by beck@
ok visa@
