source: rtems/cpukit/rtems/src/attr.c @ 7d5566e

4.104.114.84.95
Last change on this file since 7d5566e was b2fed481, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/97 at 17:55:09

Added these files to contain bodies for routines included in the API
but which did not have real bodies. This is necessary for languages
like Ada95 which must have real entries in a library for bindings.

  • Property mode set to 100644
File size: 708 bytes
Line 
1/*
2 *  Body for Attribute Routines
3 *
4 *
5 *  COPYRIGHT (c) 1989-1997.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may in
10 *  the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/rtems/tasks.h>
18#include <rtems/score/stack.h>
19#include <rtems/rtems/modes.h>
20
21rtems_unsigned32 rtems_minimum_stack_size = STACK_MINIMUM_SIZE;
22rtems_unsigned32 rtems_interrupt_mask = RTEMS_INTERRUPT_MASK;
23
24rtems_attribute rtems_interrupt_level_attribute(
25  unsigned32 level
26)
27{
28  return RTEMS_INTERRUPT_LEVEL(level);
29}
30
Note: See TracBrowser for help on using the repository browser.