diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/osal/nil/osal.h | 2 | ||||
-rw-r--r-- | os/hal/osal/rt/osal.h | 2 | ||||
-rw-r--r-- | os/hal/templates/osal/osal.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index c5dd68db9..758c7f87d 100644 --- a/os/hal/osal/nil/osal.h +++ b/os/hal/osal/nil/osal.h @@ -815,7 +815,7 @@ static inline void osalMutexObjectInit(mutex_t *mp) { chSemObjectInit((semaphore_t *)mp, 1);
}
-/*
+/**
* @brief Locks the specified mutex.
* @post The mutex is locked and inserted in the per-thread stack of owned
* mutexes.
diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h index fd39e860f..78c01a446 100644 --- a/os/hal/osal/rt/osal.h +++ b/os/hal/osal/rt/osal.h @@ -825,7 +825,7 @@ static inline void osalMutexObjectInit(mutex_t *mp) { #endif
}
-/*
+/**
* @brief Locks the specified mutex.
* @post The mutex is locked and inserted in the per-thread stack of owned
* mutexes.
diff --git a/os/hal/templates/osal/osal.h b/os/hal/templates/osal/osal.h index af51fad27..bad7e9d19 100644 --- a/os/hal/templates/osal/osal.h +++ b/os/hal/templates/osal/osal.h @@ -789,7 +789,7 @@ static inline void osalMutexObjectInit(mutex_t *mp) { *mp = 0;
}
-/*
+/**
* @brief Locks the specified mutex.
* @post The mutex is locked and inserted in the per-thread stack of owned
* mutexes.
|