summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-27 12:15:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-27 12:15:06 +0000
commit3f381864a5ef7197de8f0fe9c4bbd7f978b18ff8 (patch)
treecf7b41aef0c587ad544ba4b5f83d955a610723f7 /c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl
parent2001-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-3f381864a5ef7197de8f0fe9c4bbd7f978b18ff8.tar.bz2
2001-11-27 Joel Sherrill <joel@OARcorp.com>,
* new_exception_processing/Makefile.in, new_exception_processing/.cvsignore, new_exception_processing/Makefile.am, new_exception_processing/c_isr.inl, new_exception_processing/cpu.c, new_exception_processing/cpu.h, new_exception_processing/cpu_asm.S, old_exception_processing/Makefile.in, old_exception_processing/.cvsignore, old_exception_processing/Makefile.am, old_exception_processing/README, old_exception_processing/TODO, old_exception_processing/c_isr.inl, old_exception_processing/cpu.c, old_exception_processing/cpu.h, old_exception_processing/cpu_asm.S, old_exception_processing/irq_stub.S, old_exception_processing/ppc_offs.h, old_exception_processing/ppccache.c, old_exception_processing/rtems.S: Deleted since now under libbsp.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl9
1 files changed, 0 insertions, 9 deletions
diff --git a/c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl b/c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl
deleted file mode 100644
index 68f8116fe9..0000000000
--- a/c/src/lib/libcpu/powerpc/new_exception_processing/c_isr.inl
+++ /dev/null
@@ -1,9 +0,0 @@
-RTEMS_INLINE_ROUTINE boolean _ISR_Is_in_progress( void )
-{
- register unsigned int isr_nesting_level;
- /*
- * Move from special purpose register 0 (mfspr SPRG0, r3)
- */
- asm volatile ("mfspr %0, 272" : "=r" (isr_nesting_level));
- return isr_nesting_level;
-}