RTEMS CPU Kit with SuperCore  4.11.2
schedulercbsimpl.h
Go to the documentation of this file.
1 
9 /*
10  * Copyright (c) 2014 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.org/license/LICENSE.
21  */
22 
23 #ifndef _RTEMS_SCORE_SCHEDULERCBSIMPL_H
24 #define _RTEMS_SCORE_SCHEDULERCBSIMPL_H
25 
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32 
39 RTEMS_INLINE_ROUTINE Scheduler_CBS_Node *_Scheduler_CBS_Thread_get_node(
40  Thread_Control *the_thread
41 )
42 {
43  return (Scheduler_CBS_Node *) _Scheduler_Thread_get_node( the_thread );
44 }
45 
48 #ifdef __cplusplus
49 }
50 #endif /* __cplusplus */
51 
52 #endif /* _RTEMS_SCORE_SCHEDULERCBSIMPL_H */
#define RTEMS_INLINE_ROUTINE
The following (in conjunction with compiler arguments) are used to choose between the use of static i...
Definition: basedefs.h:135
Inlined Routines Associated with the Manipulation of the Scheduler.
This structure defines the Thread Control Block (TCB).
Definition: thread.h:671
This structure handles CBS specific data of a thread.
Definition: schedulercbs.h:130
Thread manipulation for the CBS scheduler.