mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Formatting changes only in TriCore porttrap.c.
This commit is contained in:
parent
63cab86cc7
commit
abb476db24
|
@ -144,33 +144,32 @@ void vTrapInstallHandlers( void )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) )
|
if( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) )
|
if( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) )
|
if( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) )
|
if( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) )
|
if( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
}
|
}
|
||||||
/* Trap Handler 6 (Syscall) is installed in port.c as it is fundamental to
|
|
||||||
* the OS operation. These trap handlers is are place holders.
|
|
||||||
* if ( 0 != _install_trap_handler ( portMMU_TRAP, vMMUTrap ) )
|
|
||||||
{
|
|
||||||
_debug();
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
if( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) )
|
if( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) )
|
||||||
{
|
{
|
||||||
_debug();
|
_debug();
|
||||||
|
|
Loading…
Reference in a new issue