From d7d284843e1a4d26f1da930c018ab8266017e6dc Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 9 Nov 2008 12:03:59 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@507 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chcond.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/chcond.c b/src/chcond.c index 27e746d39..dbf7e28f7 100644 --- a/src/chcond.c +++ b/src/chcond.c @@ -42,7 +42,7 @@ void chCondInit(CondVar *cp) { /** * Signals one thread that is waiting on the condition variable. * - * @param mp pointer to the \p CondVar structure + * @param cp pointer to the \p CondVar structure */ void chCondSignal(CondVar *cp) { @@ -70,7 +70,7 @@ void chCondSignalI(CondVar *cp) { /** * Signal all threads that are waiting on the condition variable. * - * @param mp pointer to the \p CondVar structure + * @param cp pointer to the \p CondVar structure */ void chCondBroadcast(CondVar *cp) { -- cgit v1.2.3