#include <nitro/os.h>
OSIntrMode OS_RestoreInterrupts( OSIntrMode state );
This function sets the interrupt state. It takes the interrupt state given
by the argument. The state is given in OSIntrMode_Irq list format.
This function will primarily be used to restore the previous state as indicated
by the return values for OS_EnableInterrupts()
and OS_DisableInterrupts().
Sets/resets the CPSR (current program status register) IRQ interrupt control bit.
|
|
Interrupt
state to set ( |
This is the state before this function is called. The OSIntrMode_Irq enum values are:
|
|
IRQ Disable (prohibit) |
|
|
IRQ Enable (permit) |
OS_EnableInterrupts, OS_DisableInterrupts
03/04/2004 Removed FIQ from the process
01/14/2004 Included FIQ in the process
12/01/2003 Initial Version