source: rtems/cpukit/rtems/src/intrbody.c

Last change on this file was c4fb617, checked in by Joel Sherrill <joel@…>, on 02/16/22 at 22:28:43

cpukit/rtems/src/[a-r]*.c: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/**
4 * @file
5 *
6 * @ingroup RTEMSImplClassic
7 *
8 * @brief This source file contains the implementation of
9 *   directive bindings of the Interrupt Manager for languages other than
10 *   C/C++.
11 */
12
13/*
14 *  COPYRIGHT (c) 1989-2013.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 *    notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 *    notice, this list of conditions and the following disclaimer in the
24 *    documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#ifdef HAVE_CONFIG_H
40#include "config.h"
41#endif
42
43#include <rtems/rtems/status.h>
44#include <rtems/score/isr.h>
45#include <rtems/rtems/intr.h>
46
47#if !defined(RTEMS_SMP)
48
49/*
50 *  Undefine all of these is normally a macro and we want a real body in
51 *  the library for other language bindings.
52 */
53#undef rtems_interrupt_disable
54#undef rtems_interrupt_enable
55#undef rtems_interrupt_flash
56
57/*
58 *  Prototype them to avoid warnings
59 */
60rtems_interrupt_level rtems_interrupt_disable( void );
61void rtems_interrupt_enable( rtems_interrupt_level previous_level );
62void rtems_interrupt_flash( rtems_interrupt_level previous_level );
63
64/*
65 *  Now define real bodies
66 */
67rtems_interrupt_level rtems_interrupt_disable( void )
68{
69  rtems_interrupt_level previous_level;
70
71  _ISR_Local_disable( previous_level );
72
73  return previous_level;
74}
75
76void rtems_interrupt_enable(
77  rtems_interrupt_level previous_level
78)
79{
80  _ISR_Local_enable( previous_level );
81}
82
83void rtems_interrupt_flash(
84  rtems_interrupt_level previous_level
85)
86{
87  _ISR_Local_flash( previous_level );
88}
89
90#endif /* RTEMS_SMP */
91
92#undef rtems_interrupt_is_in_progress
93bool rtems_interrupt_is_in_progress( void );
94
95bool rtems_interrupt_is_in_progress( void )
96{
97  return _ISR_Is_in_progress();
98}
Note: See TracBrowser for help on using the repository browser.