Remove the base/advance choice page.
[bertos.git] / 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