aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/ch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'os/various/ch.hpp')
-rw-r--r--os/various/ch.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/os/various/ch.hpp b/os/various/ch.hpp
index f0055a174..aaf27a6d2 100644
--- a/os/various/ch.hpp
+++ b/os/various/ch.hpp
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -74,7 +74,7 @@ namespace chibios_rt {
class Timer {
public:
/**
- * @brief Embedded @p VirtualTimer structure.
+ * @brief Embedded @p VirtualTimer structure.
*/
struct ::VirtualTimer timer;
@@ -113,7 +113,7 @@ namespace chibios_rt {
class BaseThread {
public:
/**
- * @brief Pointer to the system thread.
+ * @brief Pointer to the system thread.
*/
::Thread *thread_ref;
@@ -250,7 +250,7 @@ namespace chibios_rt {
public:
/**
- * @brief The thread name.
+ * @brief The thread name.
*/
const char *name;
@@ -415,19 +415,19 @@ namespace chibios_rt {
/**
* @brief Signals the CondVar.
- * @details The next thread waiting on the @p CondVar, if any, is awakened.
+ * @details The next thread waiting on the @p CondVar, if any, is awakened.
*/
void Signal(void);
/**
- * @brief Broadcasts the CondVar.
+ * @brief Broadcasts the CondVar.
* @details All the threads waiting on the @p CondVar, if any, are awakened.
*/
void Broadcast(void);
/**
* @brief Waits on the CondVar while releasing the controlling mutex.
- *
+ *
* @return The wakep mode.
* @retval RDY_OK if the condvar was signaled using chCondSignal().
* @retval RDY_RESET if the condvar was signaled using chCondBroadcast().