source: soft/giet_vm/giet_kernel/exc_handler.h

Last change on this file was 798, checked in by meunier, 8 years ago
  • Bug fixes in Rosenfeld
  • Property svn:executable set to *
File size: 870 bytes
Line 
1///////////////////////////////////////////////////////////////////////////////////
2// File     : exc_handler.h
3// Date     : 01/04/2012
4// Author   : alain greiner and joel porquet
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7// The exc_handler.c and exc_handler.h files are part of the GIET nano-kernel.
8// They define the exception handler code.
9///////////////////////////////////////////////////////////////////////////////////
10
11
12#ifndef _EXCP_HANDLER_H
13#define _EXCP_HANDLER_H
14
15///////////////////////////////////////////////////////////////////////////////////
16// Exception Vector Table (indexed by cause register XCODE field)
17///////////////////////////////////////////////////////////////////////////////////
18
19typedef void (*_exc_func_t)();
20
21extern const _exc_func_t _cause_vector[16];
22
23#endif
24
Note: See TracBrowser for help on using the repository browser.