Changeset 3b8ab757 in rtems


Ignore:
Timestamp:
05/28/10 06:09:35 (14 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 5, master
Children:
bd6515be
Parents:
ba344291
Message:

2010-05-28 Ralf Corsépius <ralf.corsepius@…>

  • au1x00/include/au1x00.h: Add prototypes for mips_default_isr, assert_sw_irq, negate_sw_irq.
  • au1x00/vectorisrs/vectorisrs.c: Remove prototype of mips_default_isr.
Location:
c/src/lib/libcpu/mips
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/mips/ChangeLog

    rba344291 r3b8ab757  
     12010-05-28      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * au1x00/include/au1x00.h: Add prototypes for
     4        mips_default_isr, assert_sw_irq, negate_sw_irq.
     5        * au1x00/vectorisrs/vectorisrs.c: Remove prototype of
     6        mips_default_isr.
     7
    182010-04-28      Joel Sherrill <joel.sherrilL@OARcorp.com>
    29
  • c/src/lib/libcpu/mips/au1x00/include/au1x00.h

    rba344291 r3b8ab757  
    518518}
    519519
     520
     521extern void mips_default_isr( int vector );
     522
     523/* Generate a software interrupt */
     524extern int assert_sw_irq(uint32_t irqnum);
     525
     526/* Clear a software interrupt */
     527extern int negate_sw_irq(uint32_t irqnum);
     528
    520529#endif
  • c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c

    rba344291 r3b8ab757  
    1717#include <libcpu/au1x00.h>
    1818
    19 void mips_default_isr( int vector );
    2019static void call_vectored_isr(CPU_Interrupt_frame *, uint32_t , void *);
    2120
Note: See TracChangeset for help on using the changeset viewer.