4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2001, 2004 Develer S.r.l. (http://www.develer.com/)
30 * Copyright 1999, 2000, 2001 Bernie Innocenti <bernie@codewiz.org>
34 * \brief Internal scheduler structures and definitions for processes.
37 * \author Bernie Innocenti <bernie@codewiz.org>
43 #include "cfg/cfg_proc.h"
44 #include "cfg/cfg_monitor.h"
46 #include <cfg/compiler.h>
48 #include <cpu/types.h> /* for cpu_stack_t */
49 #include <cpu/irq.h> // IRQ_ASSERT_DISABLED()
51 #include <kern/proc.h> // struct Process
52 #include <kern/idle.h> // idle_proc
56 * \name Flags for Process.flags.
59 #define PF_FREESTACK BV(0) /**< Free the stack when process dies */
63 /** Track running processes. */
64 extern REGISTER Process *current_process;
67 * Track ready processes.
69 * Access to this list must be performed with interrupts disabled
71 extern REGISTER List proc_ready_list;
74 #define prio_next() (LIST_EMPTY(&proc_ready_list) ? idle_proc->link.pri : \
75 ((PriNode *)LIST_HEAD(&proc_ready_list))->pri)
76 #define prio_curr() (current_process->link.pri)
78 #define SCHED_ENQUEUE_INTERNAL(proc) \
79 LIST_ENQUEUE(&proc_ready_list, &(proc)->link)
80 #define SCHED_ENQUEUE_HEAD_INTERNAL(proc) \
81 LIST_ENQUEUE_HEAD(&proc_ready_list, &(proc)->link)
86 #define SCHED_ENQUEUE_INTERNAL(proc) ADDTAIL(&proc_ready_list, &(proc)->link)
87 #define SCHED_ENQUEUE_HEAD_INTERNAL(proc) ADDHEAD(&proc_ready_list, &(proc)->link)
91 * Enqueue a process in the ready list.
93 * Always use this macro to instert a process in the ready list, as its
94 * might vary to implement a different scheduling algorithms.
96 * \note Access to the scheduler ready list must be performed with
97 * interrupts disabled.
99 #define SCHED_ENQUEUE(proc) do { \
100 IRQ_ASSERT_DISABLED(); \
101 LIST_ASSERT_VALID(&proc_ready_list); \
102 SCHED_ENQUEUE_INTERNAL(proc); \
105 #define SCHED_ENQUEUE_HEAD(proc) do { \
106 IRQ_ASSERT_DISABLED(); \
107 LIST_ASSERT_VALID(&proc_ready_list); \
108 SCHED_ENQUEUE_HEAD_INTERNAL(proc); \
114 * Changes the priority of an already enqueued process.
116 * Searches and removes the process from the ready list, then uses LIST_ENQUEUE(()
117 * to insert again to fix priority.
119 * No action is performed for processes that aren't in the ready list, eg. in semaphore queues.
121 * \note Performance could be improved with a different implementation of priority list.
123 INLINE void sched_reenqueue(struct Process *proc)
125 IRQ_ASSERT_DISABLED();
126 LIST_ASSERT_VALID(&proc_ready_list);
129 FOREACH_NODE(n, &proc_ready_list)
131 if (n == &proc->link.link)
138 // only remove and enqueue again if process is already in the ready list
139 // otherwise leave it alone
142 REMOVE(&proc->link.link);
143 LIST_ENQUEUE(&proc_ready_list, &proc->link);
146 #endif //CONFIG_KERN_PRI
148 /// Schedule another process *without* adding the current one to the ready list.
149 void proc_switch(void);
150 void proc_entry(void);
152 #if CONFIG_KERN_MONITOR
153 /** Initialize the monitor */
154 void monitor_init(void);
156 /** Register a process into the monitor */
157 void monitor_add(Process *proc, const char *name);
159 /** Unregister a process from the monitor */
160 void monitor_remove(Process *proc);
162 /** Rename a process */
163 void monitor_rename(Process *proc, const char *name);
164 #endif /* CONFIG_KERN_MONITOR */
166 #endif /* KERN_PROC_P_H */