aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/src/concepts.dox16
1 files changed, 11 insertions, 5 deletions
diff --git a/docs/src/concepts.dox b/docs/src/concepts.dox
index f1047b6e0..a0c6a4f76 100644
--- a/docs/src/concepts.dox
+++ b/docs/src/concepts.dox
@@ -34,8 +34,8 @@
* ChibiOS/RT APIs are all named following this convention:
* @a ch\<group\>\<action\>\<suffix\>().
* The possible groups are: @a Sys, @a Sch, @a Time, @a VT, @a Thd, @a Sem,
- * @a Mtx, @a Cond, @a Evt, @a Msg, @a SequentialStream, @a IO, @a IQ, @a OQ,
- * @a Dbg, @a Core, @a Heap, @a Pool.
+ * @a Mtx, @a Cond, @a Evt, @a Msg, @a Reg, @a SequentialStream, @a IO, @a IQ,
+ * @a OQ, @a Dbg, @a Core, @a Heap, @a Pool.
*
* @section api_suffixes API Name Suffixes
* The suffix can be one of the following:
@@ -308,17 +308,20 @@
* @if LATEX_PDF
* @dot
digraph example {
- size="5, 7";
rankdir="LR";
node [shape=circle, fontname=Helvetica, fontsize=8, fixedsize="true", width="0.75", height="0.75"];
+ size="5, 7";
+
edge [fontname=Helvetica, fontsize=8];
start [label="Start", style="bold"];
+
run [label="Running"];
ready [label="Ready"];
suspend [label="Suspended"];
sleep [label="Sleeping"];
stop [label="Stop", style="bold"];
- start -> suspend [label="chThdInit()", constraint=false];
+
+ start -> suspend [label="\n chThdCreateI()", constraint=false, dir=back];
start -> run [label="chThdCreate()"];
start -> ready [label="chThdCreate()"];
run -> ready [label="Reschedule", dir="both"];
@@ -335,14 +338,17 @@
digraph example {
rankdir="LR";
node [shape=circle, fontname=Helvetica, fontsize=8, fixedsize="true", width="0.75", height="0.75"];
+
edge [fontname=Helvetica, fontsize=8];
start [label="Start", style="bold"];
+
run [label="Running"];
ready [label="Ready"];
suspend [label="Suspended"];
sleep [label="Sleeping"];
stop [label="Stop", style="bold"];
- start -> suspend [label="chThdInit()", constraint=false];
+
+ start -> suspend [label="\n chThdCreateI()", constraint=false, dir=back];
start -> run [label="chThdCreate()"];
start -> ready [label="chThdCreate()"];
run -> ready [label="Reschedule", dir="both"];