mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Revert incorrect KSEfication: realitexpire expects a struct proc *, not a
struct thread *.
This commit is contained in:
parent
c05c122c97
commit
c798b36242
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue