]> Zhao Yanbai Git Server - minix.git/commit
scheduling - time quantum in miliseconds
authorTomas Hruby <tom@minix3.org>
Tue, 25 May 2010 08:06:14 +0000 (08:06 +0000)
committerTomas Hruby <tom@minix3.org>
Tue, 25 May 2010 08:06:14 +0000 (08:06 +0000)
commit451a6890d655fd02be7e8d0c3c1fae0f473adc14
tree80c5321dddae40245025939980bf53fef65331af
parentac14a989b3bbaaaa700da7e24c839b787903eda0
scheduling - time quantum in miliseconds

- Currently the cpu time quantum is timer-ticks based. Thus the
  remaining quantum is decreased only if the processes is interrupted
  by a timer tick. As processes block a lot this typically does not
  happen for normal user processes. Also the quantum depends on the
  frequency of the timer.

- This change makes the quantum miliseconds based. Internally the
  miliseconds are translated into cpu cycles. Everytime userspace
  execution is interrupted by kernel the cycles just consumed by the
  current process are deducted from the remaining quantum.

- It makes the quantum system timer frequency independent.

- The boot processes quantum is loosely derived from the tick-based
  quantas and 60Hz timer and subject to future change

- the 64bit arithmetics is a little ugly, will be changes once we have
  compiler support for 64bit integers (soon)
17 files changed:
include/minix/u64.h
kernel/arch/i386/apic.c
kernel/arch/i386/arch_clock.c
kernel/arch/i386/arch_watchdog.c
kernel/clock.c
kernel/clock.h
kernel/glo.h
kernel/main.c
kernel/proc.c
kernel/proc.h
kernel/proto.h
kernel/system/do_schedule.c
kernel/system/do_setalarm.c
kernel/table.c
kernel/type.h
kernel/utility.c
servers/is/dmp_kernel.c