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:
Ralf Corsepius
2004-03-31 01:58:17 +00:00
parent b5cfa4eeb3
commit a4a1ccf66d
7 changed files with 15 additions and 8 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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
)

View File

@@ -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.

View File

@@ -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
)

View File

@@ -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 );
}

View File

@@ -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
)