RTEMS
cpukit
score
src
schedulerdefaultreleasejob.c
Go to the documentation of this file.
1
9
/*
10
* Copyright (C) 2011 Petr Benes.
11
* Copyright (C) 2011 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
#ifdef HAVE_CONFIG_H
19
#include "config.h"
20
#endif
21
22
#include <
rtems/score/scheduler.h
>
23
24
void
_Scheduler_default_Release_job
(
25
const
Scheduler_Control
*scheduler,
26
Thread_Control
*the_thread,
27
Priority_Node
*priority_node,
28
uint64_t deadline,
29
Thread_queue_Context
*queue_context
30
)
31
{
32
(void) scheduler;
33
(void) the_thread;
34
(void) priority_node;
35
(void) deadline;
36
(void) queue_context;
37
}
38
39
void
_Scheduler_default_Cancel_job
(
40
const
Scheduler_Control
*scheduler,
41
Thread_Control
*the_thread,
42
Priority_Node
*priority_node,
43
Thread_queue_Context
*queue_context
44
)
45
{
46
(void) scheduler;
47
(void) the_thread;
48
(void) priority_node;
49
(void) queue_context;
50
}
_Scheduler_default_Release_job
void _Scheduler_default_Release_job(const Scheduler_Control *scheduler, Thread_Control *the_thread, Priority_Node *priority_node, uint64_t deadline, Thread_queue_Context *queue_context)
Does nothing.
Definition:
schedulerdefaultreleasejob.c:24
Thread_queue_Context
Thread queue context for the thread queue methods.
Definition:
threadq.h:198
Priority_Node
The priority node to build up a priority aggregation.
Definition:
priority.h:98
_Thread_Control
Definition:
thread.h:725
_Scheduler_Control
Scheduler control.
Definition:
scheduler.h:264
_Scheduler_default_Cancel_job
void _Scheduler_default_Cancel_job(const Scheduler_Control *scheduler, Thread_Control *the_thread, Priority_Node *priority_node, Thread_queue_Context *queue_context)
Does nothing.
Definition:
schedulerdefaultreleasejob.c:39
scheduler.h
Constants and Structures Associated with the Scheduler.
Generated by
1.8.14