X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=bertos%2Fkern%2Fproc_p.h;h=3316594eb1feb2beeee634264378637526f19e64;hb=20ee58861ef4b03b868eed377051dde27c8f23ef;hp=b148057c4a02fc256a5ade9505ef9986d246b34e;hpb=b0c536ad873bb29ed977417a6a5b1aa586414d3b;p=bertos.git diff --git a/bertos/kern/proc_p.h b/bertos/kern/proc_p.h index b148057c..3316594e 100644 --- a/bertos/kern/proc_p.h +++ b/bertos/kern/proc_p.h @@ -47,6 +47,7 @@ #include #include /* for cpu_stack_t */ +#include // IRQ_ASSERT_DISABLED() #include @@ -132,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);