sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // e32/include/nkern/arm/irq_exit.h sl@0: // sl@0: // sl@0: sl@0: #ifndef __IRQ_EXIT_H__ sl@0: #define __IRQ_EXIT_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: /** sl@0: IRQ Postamble which will not reschedule (can be returned to by co-resident OS). sl@0: This routine is called after the IRQ has been dispatched. sl@0: It may be returned to instead of __ArmVectorIrq() if a reschedule must be avoided. sl@0: */ sl@0: extern "C" IMPORT_C void __ArmVectorIrqPostambleNoResched(); sl@0: sl@0: /** sl@0: FIQ Postamble which will not reschedule (can be returned to by co-resident OS). sl@0: This routine is called after the FIQ has been dispatched. sl@0: It may be returned to instead of __ArmVectorFiq() if a reschedule must be avoided. sl@0: */ sl@0: extern "C" IMPORT_C void __ArmVectorFiqPostambleNoResched(); sl@0: sl@0: #endif // __IRQ_EXIT_H__