diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-05 20:13:14 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-05 20:13:14 +0000 |
commit | 3ef3963f8a252bc2bc9cb98a4a6e135efe431a14 (patch) | |
tree | cdc7897710afabc24d6dd317ae815d090844230a /src | |
parent | 1d222307d4b60222ac1f3e619549ecd672a1e710 (diff) | |
download | ChibiOS-3ef3963f8a252bc2bc9cb98a4a6e135efe431a14.tar.gz ChibiOS-3ef3963f8a252bc2bc9cb98a4a6e135efe431a14.tar.bz2 ChibiOS-3ef3963f8a252bc2bc9cb98a4a6e135efe431a14.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@808 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/include/mailboxes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/mailboxes.h b/src/include/mailboxes.h index 58e386e9f..68caee8d1 100644 --- a/src/include/mailboxes.h +++ b/src/include/mailboxes.h @@ -84,8 +84,7 @@ extern "C" { * Returns the next message in the queue without removing it.
* @note A message must be waiting in the queue for this function to work or
* it would return garbage. The correct way to use this macro is to
- * use @p chMBContainsMessages() and then use this macro, all within
- * a lock state. + * use @p chMBGetFull() and then use this macro, all within a lock state. */
#define chMBPeek(mbp) (*(mbp)->mb_rdptr)
|