X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fproc_p.h;h=3316594eb1feb2beeee634264378637526f19e64;hb=20ee58861ef4b03b868eed377051dde27c8f23ef;hp=d99d5fc187d6090eea283304d43c3a49e881d1e5;hpb=b0ba66e728f0885d53e7836898ea60902c818aa8;p=bertos.git diff --git a/bertos/kern/proc_p.h b/bertos/kern/proc_p.h index d99d5fc1..3316594e 100644 --- a/bertos/kern/proc_p.h +++ b/bertos/kern/proc_p.h @@ -40,10 +40,14 @@ #ifndef KERN_PROC_P_H #define KERN_PROC_P_H -#include "cfg/cfg_kern.h" +#include "cfg/cfg_proc.h" +#include "cfg/cfg_signal.h" +#include "cfg/cfg_monitor.h" + #include #include /* for cpu_stack_t */ +#include // IRQ_ASSERT_DISABLED() #include @@ -129,6 +133,41 @@ extern REGISTER List ProcReadyList; SCHED_ENQUEUE_INTERNAL(proc); \ } while (0) +#if CONFIG_KERN_PRI +/** + * Changes the priority of an already enqueued process. + * + * Searches and removes the process from the ready list, then uses LIST_ENQUEUE(() + * to insert again to fix priority. + * + * No action is performed for processes that aren't in the ready list, eg. in semaphore queues. + * + * \note Performance could be improved with a different implementation of priority list. + */ +INLINE void SCHED_CHANGE_PRI(struct Process *proc) +{ + IRQ_ASSERT_DISABLED(); + LIST_ASSERT_VALID(&ProcReadyList); + Node *n; + PriNode *pos = NULL; + FOREACH_NODE(n, &ProcReadyList) + { + if (n == &proc->link.link) + { + pos = (PriNode *)n; + break; + } + } + + // only remove and enqueue again if process is already in the ready list + // otherwise leave it alone + if (pos) + { + REMOVE(&proc->link.link); + LIST_ENQUEUE(&ProcReadyList, &proc->link); + } +} +#endif //CONFIG_KERN_PRI /// Schedule another process *without* adding the current one to the ready list. void proc_switch(void);