CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/11/05 11:02:04
Modified files:
sys/kern : kern_synch.c
Log message:
sleep_signal_check() is called twice in sleep_finish().
The first time a pending stop should result in a stopped thread but
the second call should not call proc_stop since the sleep is done and
the proc should continue as SONPROC until it hits the next cursig call.
Fix for a panic seen by bluhm@
OK mpi@
