1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-06 13:09:50 +00:00

Spelling fix in a KASSERT: runq_chose -> runq_choose.

This commit is contained in:
John Baldwin 2001-07-04 20:00:48 +00:00
parent 4a370459cc
commit f583b1d938
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79246

View File

@ -211,7 +211,7 @@ runq_choose(struct runq *rq)
p = TAILQ_FIRST(rqh);
KASSERT(p != NULL, ("runq_choose: no proc on busy queue"));
KASSERT(p->p_stat == SRUN,
("runq_chose: process %d(%s) in state %d", p->p_pid,
("runq_choose: process %d(%s) in state %d", p->p_pid,
p->p_comm, p->p_stat));
CTR3(KTR_RUNQ, "runq_choose: pri=%d p=%p rqh=%p", pri, p, rqh);
TAILQ_REMOVE(rqh, p, p_procq);