diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-24 17:59:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-24 17:59:51 +0000 |
commit | 8fa109243e5d626a941db8e7d6dc30bb64f9bc9f (patch) | |
tree | ac92dda23f29f7f49078904b111e2c2679347a1b /docs | |
parent | f29ada23c52c611b840cd7321fe52e1aa18f5ce9 (diff) | |
download | ChibiOS-8fa109243e5d626a941db8e7d6dc30bb64f9bc9f.tar.gz ChibiOS-8fa109243e5d626a941db8e7d6dc30bb64f9bc9f.tar.bz2 ChibiOS-8fa109243e5d626a941db8e7d6dc30bb64f9bc9f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@675 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ch.txt | 8 | ||||
-rw-r--r-- | docs/src/interrupts.dox | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/ch.txt b/docs/ch.txt index 6f99b0f98..d807d23ae 100644 --- a/docs/ch.txt +++ b/docs/ch.txt @@ -127,8 +127,8 @@ * - <b>I-Locked</b>. Kernel locked and regular interrupt sources disabled.
* I-Class APIs are invokable from this state.
* - <b>Serving Regular Interrupt</b>. No system APIs are accessible but it is
- * possible to switch to the I-Locked state using @p chSysLockI() and then
- * invoke any I-Class API. Interrupt handlers can be preemptable on some
+ * possible to switch to the I-Locked state using @p chSysLockFromIsr() and
+ * then invoke any I-Class API. Interrupt handlers can be preemptable on some
* architectures thus is important to switch to I-Locked state before
* invoking system APIs.
* - <b>Serving Fast Interrupt</b>. System APIs are not accessible.
@@ -167,8 +167,8 @@ slock -> ilock [label="Context Switch", dir="both"];
norm -> sri [label="Regular IRQ", style="dotted"];
sri -> norm [label="Regular IRQ return", fontname=Helvetica, fontsize=8];
- sri -> ilock [label="chSysLockI()", constraint=false];
- ilock -> sri [label="chSysUnlockI()", fontsize=8];
+ sri -> ilock [label="chSysLockFromIsr()", constraint=false];
+ ilock -> sri [label="chSysUnlockFromIsr()", fontsize=8];
norm -> sleep [label="Idle Thread"];
sleep -> sri [label="Regular IRQ", style="dotted"];
}
diff --git a/docs/src/interrupts.dox b/docs/src/interrupts.dox index 2a14bd6aa..3ba5d2b9a 100644 --- a/docs/src/interrupts.dox +++ b/docs/src/interrupts.dox @@ -11,9 +11,9 @@ CH_IRQ_HANDLER(myIRQ) { // IRQ handling code, preemptable if the architecture supports it.
- chSysLockI();
+ chSysLockFromIsr();
// Invocation of some I-Class system APIs, never preemptable.
- chSysUnlockI().
+ chSysUnlockFromIsr().
// More IRQ handling code, again preemptable.
|