Seconds to ticks conversion was done at the wrong place.
This commit is contained in:
parent
471d45256e
commit
9d27f32b87
@ -595,8 +595,8 @@ shutdown_kproc(void *arg, int howto)
|
||||
|
||||
p = (struct proc *)arg;
|
||||
printf("Waiting (max %d seconds) for system process `%s' to stop...",
|
||||
kproc_shutdown_wait * hz, p->p_comm);
|
||||
error = suspend_kproc(p, kproc_shutdown_wait);
|
||||
kproc_shutdown_wait, p->p_comm);
|
||||
error = suspend_kproc(p, kproc_shutdown_wait * hz);
|
||||
|
||||
if (error == EWOULDBLOCK)
|
||||
printf("timed out\n");
|
||||
|
Loading…
Reference in New Issue
Block a user