Fix "Found unknown command" doxygen warnings.
authorarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 26 Mar 2010 15:49:59 +0000 (15:49 +0000)
committerarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 26 Mar 2010 15:49:59 +0000 (15:49 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3275 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/signal.c

index 37a37a255196d5655ee35ce45273932a54c81475..71ccf67ada7dd6090ecc5a1420a7580567dda67d 100644 (file)
@@ -75,9 +75,7 @@
  * <pre>
  * - Synchronous-signal delivery:
  *
- *     P1__                                   __P2
- *         \                                 /
- *          \__sig_send()____proc_wakeup()__/
+ *     [P1]____sig_send()____proc_wakeup()____[P2]
  * </pre>
  *
  * In the asynchronous case, the process is scheduled for execution as a
@@ -87,9 +85,7 @@
  * <pre>
  * - Asynchronous-signal delivery:
  *
- *     P1__                  __P1__                       __P2
- *         \                /      \                     /
- *          \__sig_post()__/        \__proc_schedule()__/
+ *     [P1]____sig_post()____[P1]____proc_schedule()____[P2]
  * </pre>
  *
  * In this way, any execution context, including an interrupt handler, can