Revert incorrect KSEfication: realitexpire expects a struct proc *, not a

struct thread *.
This commit is contained in:
Dag-Erling Smørgrav 2001-11-24 14:09:50 +00:00
parent c05c122c97
commit c798b36242

View file

@ -189,7 +189,7 @@ linux_alarm(struct thread *td, struct linux_alarm_args *args)
callout_stop(&td->td_proc->p_itcallout);
if (it.it_value.tv_sec != 0) {
callout_reset(&td->td_proc->p_itcallout, tvtohz(&it.it_value),
realitexpire, td);
realitexpire, td->td_proc);
timevaladd(&it.it_value, &tv);
}
td->td_proc->p_realtimer = it;