Name the pri argument to cv_broadcastpri() to match the existing style of

this file.
This commit is contained in:
John Baldwin 2004-05-05 21:57:44 +00:00
parent 81f3488f97
commit 57aa1f887f

View File

@ -58,7 +58,7 @@ int cv_timedwait(struct cv *cvp, struct mtx *mp, int timo);
int cv_timedwait_sig(struct cv *cvp, struct mtx *mp, int timo);
void cv_signal(struct cv *cvp);
void cv_broadcastpri(struct cv *cvp, int);
void cv_broadcastpri(struct cv *cvp, int pri);
#define cv_broadcast(cvp) cv_broadcastpri(cvp, -1)