X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fpreempt.c;h=078724b42a8e38095fb93e3c6e226d2e2b5e2d70;hb=7166a2cb55a257889ffc8f0199d048409449f89a;hp=cde336510ee0e36cf6644f9bc5f92e5f0e74dc98;hpb=368b5a0d273a9dc64e06d28e073b2577ba4c06fe;p=bertos.git diff --git a/bertos/kern/preempt.c b/bertos/kern/preempt.c index cde33651..078724b4 100644 --- a/bertos/kern/preempt.c +++ b/bertos/kern/preempt.c @@ -26,112 +26,7 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2008 Bernie Innocenti - * --> - * - * \brief Simple preemptive multitasking scheduler. + * \note This file is deprecated and kept only for backward compatibility. * - * \version $Id: proc.c 1616 2008-08-10 19:41:26Z bernie $ - * \author Bernie Innocenti + * --> */ - -#include "proc_p.h" -#include "proc.h" - -#include -#include -#include // CPU_IDLE -#include // IRQ_DISABLE()... -#include -#include - - -int preempt_forbid_cnt; - -Timer preempt_timer; - - -// fwd decl from idle.c -void idle_init(void); - - -void proc_preempt(void) -{ - IRQ_DISABLE; - - LIST_ASSERT_VALID(&ProcReadyList); - CurrentProcess = (struct Process *)list_remHead(&ProcReadyList); - LIST_ASSERT_VALID(&ProcReadyList); - ASSERT2(CurrentProcess, "no idle proc?"); - - IRQ_ENABLE; - - TRACEMSG("new proc: %p:%s", CurrentProcess, CurrentProcess ? CurrentProcess->monitor.name : "---"); - monitor_report(); -} - -void proc_preempt_timer(UNUSED_ARG(void *, param)) -{ - /* Abort if task preemption is disabled */ - if (preempt_forbid_cnt) - return; - - IRQ_DISABLE; -/* - if (!CurrentProcess->forbid_cnt) - { - TRACEMSG("preempting %p:%s", CurrentProcess, CurrentProcess->monitor.name); - SCHED_ENQUEUE(CurrentProcess); - proc_preempt(); - } -*/ - IRQ_ENABLE; - - timer_setDelay(&preempt_timer, CONFIG_KERN_QUANTUM); - timer_add(&preempt_timer); -} - -void proc_schedule(void) -{ - ATOMIC(LIST_ASSERT_VALID(&ProcReadyList)); - TRACEMSG("%p:%s", CurrentProcess, proc_currentName()); - ATOMIC(LIST_ASSERT_VALID(&ProcReadyList)); - - /* Sleeping with IRQs disabled or preemption forbidden is illegal */ - ASSERT_IRQ_ENABLED(); - ASSERT(preempt_forbid_cnt == 0); - - // Will invoke proc_preempt() in interrupt context - kill(0, SIGUSR1); -} - -void proc_yield(void) -{ - TRACEMSG("%p:%s", CurrentProcess, proc_currentName()); - - IRQ_DISABLE; - SCHED_ENQUEUE(CurrentProcess); - IRQ_ENABLE; - - proc_schedule(); -} - -void proc_entry(void (*user_entry)(void)) -{ - user_entry(); - proc_exit(); -} - -void preempt_init(void) -{ - MOD_CHECK(irq); - MOD_CHECK(timer); - - irq_register(SIGUSR1, proc_preempt); - - timer_setSoftint(&preempt_timer, proc_preempt_timer, NULL); - timer_setDelay(&preempt_timer, CONFIG_KERN_QUANTUM); - timer_add(&preempt_timer); - - idle_init(); -}