diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-02 12:32:13 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-07-02 12:32:13 +0000 |
commit | 5f4dbf9ca9ba32bfeefa3dbab412867dc63f0892 (patch) | |
tree | a178d1e424124786e3f5e16e8e807a638812ed58 /src | |
parent | 8a02a67d832e1c3515f91f97dcb2a2b61be3268f (diff) | |
download | ChibiOS-5f4dbf9ca9ba32bfeefa3dbab412867dc63f0892.tar.gz ChibiOS-5f4dbf9ca9ba32bfeefa3dbab412867dc63f0892.tar.bz2 ChibiOS-5f4dbf9ca9ba32bfeefa3dbab412867dc63f0892.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@328 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ch.hpp | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/lib/ch.hpp b/src/lib/ch.hpp index 4b4ef196e..e4ce6000f 100644 --- a/src/lib/ch.hpp +++ b/src/lib/ch.hpp @@ -41,12 +41,15 @@ namespace chibios_rt { /**
* Disables interrupts.
- * @note On some ports it is faster to invoke chSysLock() directly.
+ * @note On some ports it is faster to invoke chSysLock() directly because
+ * inlining.
*/
static void Lock(void);
+
/**
* Enables interrupts.
- * @note On some ports it is faster to invoke chSysUnlock() directly.
+ * @note On some ports it is faster to invoke chSysUnlock() directly
+ * because inlining.
*/
static void Unlock(void);
@@ -89,7 +92,7 @@ namespace chibios_rt { /**
* Base class for a ChibiOS/RT thread, the thread body is the virtual
- * function /p Main().
+ * function \p Main().
*/
class BaseThread {
public:
@@ -162,7 +165,7 @@ namespace chibios_rt { static msg_t WaitMessage(void);
/**
- * Returns an enqueued message or /p NULL.
+ * Returns an enqueued message or \p NULL.
*/
static msg_t GetMessage(void);
@@ -207,7 +210,7 @@ namespace chibios_rt { /**
* Simplified constructor, it allows to create a thread by simply
- * specifying a name. In is assumed /p NORMALPRIO as initial priority
+ * specifying a name. In is assumed \p NORMALPRIO as initial priority
* and no special option flags.
*/
EnhancedThread(const char *tname) :
@@ -219,7 +222,7 @@ namespace chibios_rt { #ifdef CH_USE_SEMAPHORES
/**
- * Class encapsulating a /p Semaphore.
+ * Class encapsulating a \p Semaphore.
*/
class Semaphore {
public:
@@ -263,7 +266,7 @@ namespace chibios_rt { #ifdef CH_USE_MUTEXES
/**
- * Class encapsulating a /p Mutex.
+ * Class encapsulating a \p Mutex.
*/
class Mutex {
public:
@@ -298,7 +301,7 @@ namespace chibios_rt { #ifdef CH_USE_EVENTS
/**
- * Class encapsulating an /p EventSource.
+ * Class encapsulating an \p EventSource.
*/
class Event {
public:
|