source: rtems/cpukit/score/include/rtems/score/states.h @ 89f8eab5

4.115
Last change on this file since 89f8eab5 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 955 bytes
Line 
1/**
2 *  @file  rtems/score/states.h
3 *
4 *  @brief Thread Execution State Information
5 *
6 *  This include file defines thread execution state information.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2006.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef _RTEMS_SCORE_STATES_H
19#define _RTEMS_SCORE_STATES_H
20
21#include <stdint.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/**
28 *  @defgroup ScoreStates SuperCore Thread States
29 *
30 *  @ingroup Score
31 *
32 *  This handler encapsulates functionality which relates to the management of
33 *  the state bitmap associated with each thread.
34 */
35/**@{*/
36
37/**
38 *  The following type defines the control block used to manage a
39 *  thread's state.
40 */
41typedef uint32_t   States_Control;
42
43/**@}*/
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif
50/* end of include file */
Note: See TracBrowser for help on using the repository browser.