diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-25 20:32:43 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-25 20:32:43 +0200 |
commit | cf38ab75fc7549ab7c7e3f146228a821ae68926c (patch) | |
tree | 1390cbfeba968f5536e4132a795fee27cab07e5d /sys/src/9/pc/archmp.c | |
parent | c01833286b91b80caf56fd370ccc99060eb86a4a (diff) |
reintroduce *notsc= option
the issues with the previous tsc change where not related to the tsc
but where problems with timesync using an old frequency file. a
patch to fix timesync was commited, so so we reintroduce the *notsc=
again.
Diffstat (limited to 'sys/src/9/pc/archmp.c')
-rw-r--r-- | sys/src/9/pc/archmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/archmp.c b/sys/src/9/pc/archmp.c index 23cf4fa66..b5eb89805 100644 --- a/sys/src/9/pc/archmp.c +++ b/sys/src/9/pc/archmp.c @@ -395,7 +395,7 @@ identify(void) return 1; } - if(m->havetsc) + if(m->havetsc && getconf("*notsc") == nil) archmp.fastclock = tscticks; return 0; |