diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-11-19 00:58:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-11-19 00:58:00 +0100 |
commit | 2eec9a3688ab8a673a058312388cfff640acdd13 (patch) | |
tree | fee362298c73e0135cfc049d72c22a6c50a78caf /configfrag.ac | |
parent | d1f39c38df5aee6df6661bcae2c2ca9f79428a8f (diff) | |
download | gnumach-2eec9a3688ab8a673a058312388cfff640acdd13.tar.gz gnumach-2eec9a3688ab8a673a058312388cfff640acdd13.tar.bz2 gnumach-2eec9a3688ab8a673a058312388cfff640acdd13.zip |
Drop SIMPLE_CLOCK support
This wasn't building and is not useful with nowaday's hardware.
* configfrag.ac (SIMPLE_CLOCK): Do not define.
* kern/sched.h [SIMPLE_CLOCK] (sched_usec): Remove variable declaration.
* kern/sched_prim.c [SIMPLE_CLOCK] (sched_usec): Remove variable.
[SIMPLE_CLOCK] (sched_init): Do not initialize sched_usec variable.
[SIMPLE_CLOCK] (recompute_priorities): Do not tinker sched_usec
variable.
* kern/thread.c [SIMPLE_CLOCK] (thread_info): Do not ajust for clock
drift.
Diffstat (limited to 'configfrag.ac')
-rw-r--r-- | configfrag.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configfrag.ac b/configfrag.ac index 3d7033ec..73c23ffb 100644 --- a/configfrag.ac +++ b/configfrag.ac @@ -103,9 +103,6 @@ AC_DEFINE([MACH_VM_DEBUG], [1], [MACH_VM_DEBUG]) # Mach-dep power conservation. AC_DEFINE([POWER_SAVE], [1], [POWER_SAVE]) -# No hardware clock rollover. -AC_DEFINE([SIMPLE_CLOCK], [0], [SIMPLE_CLOCK]) - # Use statistical timing. AC_DEFINE([STAT_TIME], [1], [STAT_TIME]) |