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/src/interrupts.dox | |
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/src/interrupts.dox')
-rw-r--r-- | docs/src/interrupts.dox | 4 |
1 files changed, 2 insertions, 2 deletions
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.
|