X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fpreempt.c;h=078724b42a8e38095fb93e3c6e226d2e2b5e2d70;hb=e25abecb6a6ff52917d44d1331e5af831aeceb9c;hp=756a38fe0b89d1073b0c4585f8b702050877901a;hpb=40c25a4b1d0f1c23478c2d681b74662de968f671;p=bertos.git diff --git a/bertos/kern/preempt.c b/bertos/kern/preempt.c index 756a38fe..078724b4 100644 --- a/bertos/kern/preempt.c +++ b/bertos/kern/preempt.c @@ -26,132 +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; - - -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(); -} - - -static cpustack_t idle_stack[CONFIG_PROC_DEFSTACKSIZE / sizeof(cpustack_t)]; - -// FIXME: move this to kern/idle.c -/** - * The idle process - * - * This process never dies and never sleeps. It's also quite lazy, apathic - * and a bit antisocial. - * - * Having an idle process costs some stack space, but simplifies the - * interrupt-driven preemption logic because there is always a user - * context to which we can return. + * --> */ -static NORETURN void idle(void) -{ - for (;;) - { - TRACE; - //monitor_report(); - proc_yield(); // FIXME: CPU_IDLE - } -} - -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); - - proc_new(idle, NULL, sizeof(idle_stack), idle_stack); -}