RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
schedulerstrongapa.h
Go to the documentation of this file.
1
9/*
10 * Copyright (c) 2013, 2018 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_SCHEDULERSTRONGAPA_H
24#define _RTEMS_SCORE_SCHEDULERSTRONGAPA_H
25
29
30#ifdef __cplusplus
31extern "C" {
32#endif /* __cplusplus */
33
56typedef struct {
59 Chain_Control Ready[ RTEMS_ZERO_LENGTH_ARRAY ];
61
66typedef struct {
71
77
81#define SCHEDULER_STRONG_APA_ENTRY_POINTS \
82 { \
83 _Scheduler_strong_APA_Initialize, \
84 _Scheduler_default_Schedule, \
85 _Scheduler_strong_APA_Yield, \
86 _Scheduler_strong_APA_Block, \
87 _Scheduler_strong_APA_Unblock, \
88 _Scheduler_strong_APA_Update_priority, \
89 _Scheduler_default_Map_priority, \
90 _Scheduler_default_Unmap_priority, \
91 _Scheduler_strong_APA_Ask_for_help, \
92 _Scheduler_strong_APA_Reconsider_help_request, \
93 _Scheduler_strong_APA_Withdraw_node, \
94 _Scheduler_default_Pin_or_unpin, \
95 _Scheduler_default_Pin_or_unpin, \
96 _Scheduler_strong_APA_Add_processor, \
97 _Scheduler_strong_APA_Remove_processor, \
98 _Scheduler_strong_APA_Node_initialize, \
99 _Scheduler_default_Node_destroy, \
100 _Scheduler_default_Release_job, \
101 _Scheduler_default_Cancel_job, \
102 _Scheduler_default_Tick, \
103 _Scheduler_SMP_Start_idle \
104 SCHEDULER_OPERATION_DEFAULT_GET_SET_AFFINITY \
105 }
106
113
123 const Scheduler_Control *scheduler,
124 Scheduler_Node *node,
125 Thread_Control *the_thread,
126 Priority_Control priority
127);
128
137 const Scheduler_Control *scheduler,
138 Thread_Control *the_thread,
139 Scheduler_Node *node
140);
141
150 const Scheduler_Control *scheduler,
151 Thread_Control *the_thread,
152 Scheduler_Node *node
153);
154
163 const Scheduler_Control *scheduler,
164 Thread_Control *the_thread,
165 Scheduler_Node *node
166);
167
179 const Scheduler_Control *scheduler,
180 Thread_Control *the_thread,
181 Scheduler_Node *node
182);
183
192 const Scheduler_Control *scheduler,
193 Thread_Control *the_thread,
194 Scheduler_Node *node
195);
196
206 const Scheduler_Control *scheduler,
207 Thread_Control *the_thread,
208 Scheduler_Node *node,
209 Thread_Scheduler_state next_state
210);
211
219 const Scheduler_Control *scheduler,
220 Thread_Control *idle
221);
222
232 const Scheduler_Control *scheduler,
233 struct Per_CPU_Control *cpu
234);
235
244 const Scheduler_Control *scheduler,
245 Thread_Control *the_thread,
246 Scheduler_Node *node
247);
248
251#ifdef __cplusplus
252}
253#endif /* __cplusplus */
254
255#endif /* _RTEMS_SCORE_SCHEDULERSTRONGAPA_H */
uint64_t Priority_Control
The thread priority control.
Definition: priority.h:70
void _Scheduler_strong_APA_Yield(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Performs a yield operation.
Definition: schedulerstrongapa.c:419
Thread_Control * _Scheduler_strong_APA_Remove_processor(const Scheduler_Control *scheduler, struct Per_CPU_Control *cpu)
Removes an idle thread from the given cpu.
Definition: schedulerstrongapa.c:404
void _Scheduler_strong_APA_Block(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Blocks the thread.
Definition: schedulerstrongapa.c:225
void _Scheduler_strong_APA_Node_initialize(const Scheduler_Control *scheduler, Scheduler_Node *node, Thread_Control *the_thread, Priority_Control priority)
Initializes the node with the given priority.
Definition: schedulerstrongapa.c:172
void _Scheduler_strong_APA_Update_priority(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Updates the priority of the node.
Definition: schedulerstrongapa.c:320
void _Scheduler_strong_APA_Add_processor(const Scheduler_Control *scheduler, Thread_Control *idle)
Adds the idle thread to a processor.
Definition: schedulerstrongapa.c:388
void _Scheduler_strong_APA_Unblock(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Unblocks the thread.
Definition: schedulerstrongapa.c:284
void _Scheduler_strong_APA_Reconsider_help_request(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Reconsiders help request.
Definition: schedulerstrongapa.c:351
bool _Scheduler_strong_APA_Ask_for_help(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node)
Asks for help.
Definition: schedulerstrongapa.c:340
void _Scheduler_strong_APA_Withdraw_node(const Scheduler_Control *scheduler, Thread_Control *the_thread, Scheduler_Node *node, Thread_Scheduler_state next_state)
Withdraws the node.
Definition: schedulerstrongapa.c:367
void _Scheduler_strong_APA_Initialize(const Scheduler_Control *scheduler)
Initializes the scheduler.
Definition: schedulerstrongapa.c:159
Thread Manipulation with the Priority-Based Scheduler.
SMP Scheduler API.
Constants and Structures Associated with the Scheduler.
Per CPU Core Structure.
Definition: percpu.h:347
Definition: prioritybitmap.h:42
Scheduler node for per-thread data.
Definition: schedulernode.h:79
Scheduler context specialization for SMP schedulers.
Definition: schedulersmp.h:46
Scheduler node specialization for SMP schedulers.
Definition: schedulersmp.h:100
Data for ready queue operations.
Definition: schedulerpriority.h:85
Scheduler context specialization for Strong APA schedulers.
Definition: schedulerstrongapa.h:56
Scheduler node specialization for Strong APA schedulers.
Definition: schedulerstrongapa.h:66
Scheduler_priority_Ready_queue Ready_queue
The associated ready queue of this node.
Definition: schedulerstrongapa.h:75
Scheduler_SMP_Node Base
SMP scheduler node.
Definition: schedulerstrongapa.h:70
Scheduler control.
Definition: scheduler.h:269
Definition: thread.h:732
Definition: chain.h:86