Nut/OS  4.10.3
API Reference
exception_c.h
Go to the documentation of this file.
00001 #ifndef ARCH_ARM_EXCEPTION_C_H
00002 #define ARCH_ARM_EXCEPTION_C_H
00003 
00004 /*
00005  * Copyright (C) 2008 by Duane Ellis
00006  *
00007  * All rights reserved.
00008  *
00009  * The original code had been released as part of the LoastARM Project 
00010  * under GPL Version 2 and is published here under the following license
00011  * with kind permission from the author:
00012  *
00013  * Redistribution and use in source and binary forms, with or without
00014  * modification, are permitted provided that the following conditions
00015  * are met:
00016  *
00017  * 1. Redistributions of source code must retain the above copyright
00018  *    notice, this list of conditions and the following disclaimer.
00019  * 2. Redistributions in binary form must reproduce the above copyright
00020  *    notice, this list of conditions and the following disclaimer in the
00021  *    documentation and/or other materials provided with the distribution.
00022  * 3. Neither the name of the copyright holders nor the names of
00023  *    contributors may be used to endorse or promote products derived
00024  *    from this software without specific prior written permission.
00025  *
00026  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00027  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00028  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00029  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00030  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00031  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00032  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
00033  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
00034  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00035  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
00036  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00037  * SUCH DAMAGE.
00038  *
00039  * For additional information see http://lostarm.sourceforge.net/
00040  */
00041 
00050 // Not implemented void ARM_NOTUSED_Handler( struct pt_regs *p );
00051 void ARM_COMMON_Handler_crash( struct pt_regs *p, const char *name );
00052 void ARM_DA_Handler( struct pt_regs *p );
00053 // Not implemented void ARM_IRQ_Handler( struct pt_regs *p );
00054 // Not implemented void ARM_FIQ_Handler( struct pt_regs *p );
00055 void ARM_PFA_Handler( struct pt_regs *p );
00056 void ARM_SWI_Handler( struct pt_regs *p );
00057 void ARM_UDF_Handler( struct pt_regs *p );
00058 
00059 #endif
00060