source: rtems/cpukit/score/cpu/powerpc/ppc-isr-vector-install.c @ fce900b5

5
Last change on this file since fce900b5 was 3a659b04, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/16 at 06:19:22

score: Introduce _Internal_error()

  • Property mode set to 100644
File size: 688 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Install Interrupt Handler Vector
5 */
6
7/*
8 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Obere Lagerstr. 30
12 *  82178 Puchheim
13 *  Germany
14 *  <rtems@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21#ifdef HAVE_CONFIG_H
22  #include "config.h"
23#endif
24
25#include <rtems/score/cpu.h>
26#include <rtems/score/interr.h>
27
28void _CPU_ISR_install_vector(
29  uint32_t vector,
30  proc_ptr new_handler,
31  proc_ptr *old_handler
32)
33{
34  _Internal_error( INTERNAL_ERROR_CPU_ISR_INSTALL_VECTOR );
35}
Note: See TracBrowser for help on using the repository browser.