mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-04 22:15:06 -05:00
local: add new driver call to set synchronization status
This will be used to set the kernel adjtimex() variables to allow other applications running on the system to know if the system clock is synchronized and the estimated error and the maximum error.
This commit is contained in:
15
local.c
15
local.c
@@ -56,6 +56,7 @@ static lcl_AccrueOffsetDriver drv_accrue_offset;
|
||||
static lcl_ApplyStepOffsetDriver drv_apply_step_offset;
|
||||
static lcl_OffsetCorrectionDriver drv_offset_convert;
|
||||
static lcl_SetLeapDriver drv_set_leap;
|
||||
static lcl_SetSyncStatusDriver drv_set_sync_status;
|
||||
|
||||
/* ================================================== */
|
||||
|
||||
@@ -557,7 +558,8 @@ lcl_RegisterSystemDrivers(lcl_ReadFrequencyDriver read_freq,
|
||||
lcl_AccrueOffsetDriver accrue_offset,
|
||||
lcl_ApplyStepOffsetDriver apply_step_offset,
|
||||
lcl_OffsetCorrectionDriver offset_convert,
|
||||
lcl_SetLeapDriver set_leap)
|
||||
lcl_SetLeapDriver set_leap,
|
||||
lcl_SetSyncStatusDriver set_sync_status)
|
||||
{
|
||||
drv_read_freq = read_freq;
|
||||
drv_set_freq = set_freq;
|
||||
@@ -565,6 +567,7 @@ lcl_RegisterSystemDrivers(lcl_ReadFrequencyDriver read_freq,
|
||||
drv_apply_step_offset = apply_step_offset;
|
||||
drv_offset_convert = offset_convert;
|
||||
drv_set_leap = set_leap;
|
||||
drv_set_sync_status = set_sync_status;
|
||||
|
||||
current_freq_ppm = (*drv_read_freq)();
|
||||
|
||||
@@ -632,3 +635,13 @@ LCL_SetTempComp(double comp)
|
||||
}
|
||||
|
||||
/* ================================================== */
|
||||
|
||||
void
|
||||
LCL_SetSyncStatus(int synchronised, double est_error, double max_error)
|
||||
{
|
||||
if (drv_set_sync_status) {
|
||||
(drv_set_sync_status)(synchronised, est_error, max_error);
|
||||
}
|
||||
}
|
||||
|
||||
/* ================================================== */
|
||||
|
||||
Reference in New Issue
Block a user