source: rtems/cpukit/score/include/rtems/score/schedulersmp.h @ 9d83f58a

4.115
Last change on this file since 9d83f58a was 9d83f58a, checked in by Sebastian Huber <sebastian.huber@…>, on 08/12/13 at 08:32:32

smp: Replace Scheduler_simple_smp_Control

Replace Scheduler_simple_smp_Control with Scheduler_SMP_Control. Rename
_Scheduler_simple_smp_Instance() to _Scheduler_SMP_Instance().

  • Property mode set to 100644
File size: 876 bytes
Line 
1/**
2 * @file
3 *
4 * @brief SMP Scheduler API
5 *
6 * @ingroup ScoreSchedulerSMP
7 */
8
9/*
10 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#ifndef _RTEMS_SCORE_SCHEDULERSMP_H
24#define _RTEMS_SCORE_SCHEDULERSMP_H
25
26#include <rtems/score/chain.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif /* __cplusplus */
31
32/**
33 * @defgroup ScoreSchedulerSMP SMP Scheduler
34 *
35 * @ingroup ScoreScheduler
36 *
37 * @{
38 */
39
40typedef struct {
41  Chain_Control scheduled;
42  Chain_Control ready[ 1 ];
43} Scheduler_SMP_Control;
44
45/** @} */
46
47#ifdef __cplusplus
48}
49#endif /* __cplusplus */
50
51#endif /* _RTEMS_SCORE_SCHEDULERSMP_H */
Note: See TracBrowser for help on using the repository browser.