aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ch.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 14:06:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-01-07 14:06:46 +0000
commitb1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889 (patch)
treec291c85d4435b20ee8f92d2726f74f7951ad1d52 /docs/ch.txt
parent14d3b059c225769038a0f3538f491cf6099dbb3e (diff)
downloadChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.tar.gz
ChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.tar.bz2
ChibiOS-b1db8a9f7fe3bc2cd48c52e7c2c50e0e118f8889.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@166 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/ch.txt')
-rw-r--r--docs/ch.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/ch.txt b/docs/ch.txt
index 48995a155..257d3d89e 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -305,7 +305,10 @@
* be carryed in both directions. Data is not copyed between the client and
* server threads but just a pointer passed so the exchange is very time
* efficient.<br>
- * Messages are always processed in FIFO order.<br>
+ * Messages are usually processed in FIFO order but it is possible to process
+ * them in priority order by specifying \p P_MSGBYPRIO when creating a server
+ * thread, \p CH_USE_MESSAGES_PRIORITY must also be specified in \p chconf.h
+ * in order to enable the feature.<br>
* Threads do not need to allocate space for message queues, the mechanism
* just requires two extra pointers in the \p Thread structure (the message
* queue header).<br>