diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-22 15:37:29 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-22 15:37:29 +0000 |
commit | bae98eb8d8e752aa084a2438aa99d5f72e3f1247 (patch) | |
tree | f0e74570eced59079300f2371ac02bfdf5c30120 /src/lib | |
parent | b094fe9dc11e9aa1f017cb65766a16ecd42432d2 (diff) | |
download | ChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.tar.gz ChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.tar.bz2 ChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@666 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ch.hpp | 16 | ||||
-rw-r--r-- | src/lib/evtimer.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/ch.hpp b/src/lib/ch.hpp index 4a052ed39..377eed6d6 100644 --- a/src/lib/ch.hpp +++ b/src/lib/ch.hpp @@ -281,12 +281,12 @@ namespace chibios_rt { #ifdef CH_USE_SEMAPHORES
/**
- * @brief Class encapsulating a @p Semaphore.
+ * @brief Class encapsulating a semaphore.
*/
class Semaphore {
public:
/**
- * @brief Embedded @p Semaphore structure.
+ * @brief Embedded @p ::Semaphore structure.
*/
struct ::Semaphore sem;
@@ -349,12 +349,12 @@ namespace chibios_rt { #ifdef CH_USE_MUTEXES
/**
- * @brief Class encapsulating a @p Mutex.
+ * @brief Class encapsulating a mutex.
*/
class Mutex {
public:
/**
- * @brief Embedded @p Mutex structure.
+ * @brief Embedded @p ::Mutex structure.
*/
struct ::Mutex mutex;
@@ -398,12 +398,12 @@ namespace chibios_rt { #ifdef CH_USE_CONDVARS
/**
- * @brief Class encapsulating a @p CondVar.
+ * @brief Class encapsulating a conditional variable.
*/
class CondVar {
public:
/**
- * @brief Embedded @p CondVar structure.
+ * @brief Embedded @p ::CondVar structure.
*/
struct ::CondVar condvar;
@@ -453,12 +453,12 @@ namespace chibios_rt { #ifdef CH_USE_EVENTS
/**
- * @brief Class encapsulating an @p EventSource.
+ * @brief Class encapsulating an event source.
*/
class Event {
public:
/**
- * @brief Embedded @p EventSource structure.
+ * @brief Embedded @p ::EventSource structure.
*/
struct ::EventSource event;
diff --git a/src/lib/evtimer.h b/src/lib/evtimer.h index 5a148e4db..cb3e4c44c 100644 --- a/src/lib/evtimer.h +++ b/src/lib/evtimer.h @@ -26,7 +26,7 @@ #define _EVTIMER_H_
/**
- * Event timer structure.
+ * @brief Event timer structure.
*/
typedef struct {
VirtualTimer et_vt;
|