diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-06 09:59:34 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-06 09:59:34 +0000 |
commit | d21a23ea649a40b2ec3b898ec8c54cdedf3b3b15 (patch) | |
tree | 305a7cf49c358e13a99f010aa6f36f6635ed7301 /os | |
parent | 6e6b675857dcd46f59d40e36185fb41b241ad461 (diff) | |
download | ChibiOS-d21a23ea649a40b2ec3b898ec8c54cdedf3b3b15.tar.gz ChibiOS-d21a23ea649a40b2ec3b898ec8c54cdedf3b3b15.tar.bz2 ChibiOS-d21a23ea649a40b2ec3b898ec8c54cdedf3b3b15.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7863 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/rt/include/chsys.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/rt/include/chsys.h b/os/rt/include/chsys.h index a92a67008..26c266dd5 100644 --- a/os/rt/include/chsys.h +++ b/os/rt/include/chsys.h @@ -70,9 +70,9 @@ *
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_PRIORITY(prio) \
@@ -88,9 +88,9 @@ *
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_KERNEL_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_KERNEL_PRIORITY(prio) \
|