source: rtems/c/src/exec/rtems/src/attr.c @ 50cf94da

4.104.114.84.95
Last change on this file since 50cf94da was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 717 bytes
Line 
1/*
2 *  Body for Attribute Routines
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
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 be
10 *  found in 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.