source: rtems/cpukit/score/cpu/nios2/nios2-isr-install-raw-handler.c @ e2d0c68

4.115
Last change on this file since e2d0c68 was e2d0c68, checked in by Sebastian Huber <sebastian.huber@…>, on 09/01/11 at 15:52:12

2011-09-01 Sebastian Huber <sebastian.huber@…>

  • cpu.c, cpu_asm.S: Removed files.
  • nios2-context-initialize.c, nios2-context-switch.S, nios2-fatal-halt.c, nios2-initialize-vectors.c, nios2-initialize.c, nios2-isr-get-level.c, nios2-isr-install-raw-handler.c, nios2-isr-install-vector.c, nios2-isr-is-in-progress.c, nios2-isr-set-level.c, nios2-thread-dispatch-disabled.c, rtems/score/nios2-utility.h: New files.
  • Makefile.am, preinstall.am: Reflect changes above.
  • irq.c: Update due to API changes.
  • rtems/score/cpu.h: New functions _CPU_Initialize_vectors(), _CPU_ISR_Set_level(), and _CPU_Fatal_halt() (instead of macros). Support for external interrupt controller (EIC). Documentation changes.
  • Property mode set to 100644
File size: 807 bytes
Line 
1/*
2 * Copyright (c) 2006 Kolja Waschk (rtemsdev/ixo.de)
3 *
4 * COPYRIGHT (c) 1989-2006
5 * On-Line Applications Research Corporation (OAR).
6 *
7 * The license and distribution terms for this file may be
8 * found in the file LICENSE in this distribution or at
9 * http://www.rtems.com/license/LICENSE.
10 *
11 * $Id$
12 */
13
14#ifdef HAVE_CONFIG_H
15  #include "config.h"
16#endif
17
18#include <rtems/score/cpu.h>
19
20/*
21 *  _CPU_ISR_install_raw_handler
22 *
23 *  NO_CPU Specific Information:
24 *
25 *  XXX document implementation including references if appropriate
26 */
27
28void _CPU_ISR_install_raw_handler(
29  uint32_t    vector,
30  proc_ptr    new_handler,
31  proc_ptr   *old_handler
32)
33{
34  /*
35   *  This is where we install the interrupt handler into the "raw" interrupt
36   *  table used by the CPU to dispatch interrupt handlers.
37   */
38}
Note: See TracBrowser for help on using the repository browser.