source: rtems/cpukit/score/cpu/arm/armv7m-exception-priority-handler.c @ 43e0599

4.115
Last change on this file since 43e0599 was 43e0599, checked in by Mathew Kallada <matkallada@…>, on 12/02/12 at 21:23:57

score misc: Clean up Doxygen #13 (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.

http://www.google-melange.com/gci/task/view/google/gci2012/8013205

  • Property mode set to 100644
File size: 817 bytes
Line 
1/**
2 * @file
3 *
4 * @brief ARMV7M Set Exception Priority and Handler
5 */
6
7/*
8 * Copyright (c) 2012 Sebastian Huber.  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.com/license/LICENSE.
19 */
20
21#ifdef HAVE_CONFIG_H
22  #include "config.h"
23#endif
24
25#include <rtems/score/cpu.h>
26
27#ifdef ARM_MULTILIB_ARCH_V7M
28
29#include <rtems/score/armv7m.h>
30
31void _ARMV7M_Set_exception_priority_and_handler(
32  int index,
33  int priority,
34  ARMV7M_Exception_handler handler
35)
36{
37  _ARMV7M_Set_exception_priority( index, priority );
38  _ARMV7M_Set_exception_handler( index, handler );
39}
40
41#endif /* ARM_MULTILIB_ARCH_V7M */
Note: See TracBrowser for help on using the repository browser.