mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* i960ca/cpu_install_intr_stack.c, i960ca/cpu_install_raw_isr.c, i960ka/cpu_install_intr_stack.c, i960ka/cpu_install_raw_isr.c, i960rp/cpu_install_intr_stack.c, i960rp/cpu_install_raw_isr.c: Convert to using c99 fixed size types.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* i960ca/cpu_install_intr_stack.c, i960ca/cpu_install_raw_isr.c,
|
||||
i960ka/cpu_install_intr_stack.c, i960ka/cpu_install_raw_isr.c,
|
||||
i960rp/cpu_install_intr_stack.c, i960rp/cpu_install_raw_isr.c:
|
||||
Convert to using c99 fixed size types.
|
||||
|
||||
2004-03-26 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* configure.ac: Add 2nd argument (rtems_updir) to RTEMS_TOP.
|
||||
|
||||
@@ -12,7 +12,7 @@ extern i960_PRCB *Prcb;
|
||||
void _CPU_Install_interrupt_stack( void )
|
||||
{
|
||||
i960_PRCB *prcb = Prcb;
|
||||
unsigned32 level;
|
||||
uint32_t level;
|
||||
|
||||
/*
|
||||
* Set the Interrupt Stack in the PRCB and force a reload of it.
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
extern i960_PRCB *Prcb;
|
||||
|
||||
void _CPU_ISR_install_raw_handler(
|
||||
unsigned32 vector,
|
||||
uint32_t vector,
|
||||
proc_ptr new_handler,
|
||||
proc_ptr *old_handler
|
||||
)
|
||||
|
||||
@@ -12,7 +12,7 @@ extern i960_PRCB *Prcb;
|
||||
void _CPU_Install_interrupt_stack( void )
|
||||
{
|
||||
i960_PRCB *prcb = Prcb;
|
||||
unsigned32 level;
|
||||
uint32_t level;
|
||||
|
||||
/*
|
||||
* Set the Interrupt Stack in the PRCB and force a reload of it.
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
extern i960_PRCB *Prcb;
|
||||
|
||||
void _CPU_ISR_install_raw_handler(
|
||||
unsigned32 vector,
|
||||
uint32_t vector,
|
||||
proc_ptr new_handler,
|
||||
proc_ptr *old_handler
|
||||
)
|
||||
|
||||
@@ -12,8 +12,8 @@ extern i960_PRCB *Prcb;
|
||||
void _CPU_Install_interrupt_stack( void )
|
||||
{
|
||||
i960_PRCB *prcb = Prcb;
|
||||
unsigned32 level;
|
||||
unsigned32 *isp = (int *) ISP_ADDR;
|
||||
uint32_t level;
|
||||
uint32_t *isp = (int *) ISP_ADDR;
|
||||
|
||||
/*
|
||||
* Set the Interrupt Stack in the on-CPU memory.
|
||||
@@ -24,7 +24,7 @@ void _CPU_Install_interrupt_stack( void )
|
||||
|
||||
prcb->intr_stack = _CPU_Interrupt_stack_low;
|
||||
|
||||
*isp = (unsigned32) prcb->intr_stack;
|
||||
*isp = (uint32_t ) prcb->intr_stack;
|
||||
|
||||
_CPU_ISR_Enable( level );
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
extern i960_PRCB *Prcb;
|
||||
|
||||
void _CPU_ISR_install_raw_handler(
|
||||
unsigned32 vector,
|
||||
uint32_t vector,
|
||||
proc_ptr new_handler,
|
||||
proc_ptr *old_handler
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user