00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include<linux/linkage.h>
00012 #include<linux/sched.h>
00013 #include<asm/hw_irq.h>
00014 #include<system_data_cells.h>
00015 #include<ipldef.h>
00016 #include<ipl.h>
00017 #include<phddef.h>
00018 #include <sch_routines.h>
00019 #include<internals.h>
00020
00021
00022
00023
00024
00025 asmlinkage void exe_resched(void) {
00026 int ipl=getipl();
00027 struct _pcb * p;
00028 setipl(IPL__SCHED);
00029
00030 vmslock(&SPIN_SCHED,-1);
00031
00032
00033 p=ctl_gl_pcb;
00034 p->pcb_l_onqtime=exe$gl_abstim_tics;
00035
00036
00037 sch_change_cur_priority(p, p->pcb$b_prib);
00038
00039
00040 SOFTINT_RESCHED_VECTOR;
00041
00042
00043 vmsunlock(&SPIN_SCHED,-1);
00044 setipl(ipl);
00045
00046 }
00047