From 57aa1f887f60650f42b73fe1c9d449b6f79fb0d7 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 5 May 2004 21:57:44 +0000 Subject: [PATCH] Name the pri argument to cv_broadcastpri() to match the existing style of this file. --- sys/sys/condvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/condvar.h b/sys/sys/condvar.h index 589fedd20a01..a8c9db72c0b1 100644 --- a/sys/sys/condvar.h +++ b/sys/sys/condvar.h @@ -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)