Prepare for handling offset correction error

This commit is contained in:
Miroslav Lichvar
2010-02-10 15:59:40 +01:00
parent 10c9a7d4b7
commit 20d898d182
19 changed files with 73 additions and 92 deletions

View File

@@ -538,7 +538,7 @@ read_frequency(void)
static void
get_offset_correction(struct timeval *raw,
double *corr)
double *corr, double *err)
{
/* Correction is given by these things :
@@ -602,6 +602,7 @@ again:
}
*corr = - (offset_register + fast_slew_remaining) + adjtime_left;
*err = 0.0;
return;
}