diff options
Diffstat (limited to 'src/chcond.c')
-rw-r--r-- | src/chcond.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) {
|