source: rtems/cpukit/rtems/src/attr.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 1095ec1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 09:03:45

Include config.h.

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