RTEMS
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 
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 
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 }
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.
Thread queue context for the thread queue methods.
Definition: threadq.h:198
The priority node to build up a priority aggregation.
Definition: priority.h:98
Scheduler control.
Definition: scheduler.h:264
void _Scheduler_default_Cancel_job(const Scheduler_Control *scheduler, Thread_Control *the_thread, Priority_Node *priority_node, Thread_queue_Context *queue_context)
Does nothing.
Constants and Structures Associated with the Scheduler.