diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:50:28 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:50:28 -0700 |
commit | 9b23315e169c390b4a2fbab290ae8196e3929cd8 (patch) | |
tree | 32c7efb2067349220399167933aa385073f1f609 /src/charts.c | |
parent | 2e437967eaee5ec4359bfada18a5c9bbedacb305 (diff) |
charts: clarify timeout units as microseconds
This API is targeting poll() usage which implies microseconds,
but let's better clarify it in naming.
Diffstat (limited to 'src/charts.c')
-rw-r--r-- | src/charts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charts.c b/src/charts.c index 57e3dc9..07c9e8d 100644 --- a/src/charts.c +++ b/src/charts.c @@ -1255,8 +1255,8 @@ static float delta(struct timeval *cur, struct timeval *prev) } -/* update the charts if necessary, return if updating occurred, and duration before another update needed in *desired_delay */ -int vwm_charts_update(vwm_charts_t *charts, int *desired_delay) +/* update the charts if necessary, return if updating occurred, and duration before another update needed in *desired_delay_us */ +int vwm_charts_update(vwm_charts_t *charts, int *desired_delay_us) { float this_delta = 0.0f; int ret = 0; @@ -1311,7 +1311,7 @@ int vwm_charts_update(vwm_charts_t *charts, int *desired_delay) } /* TODO: make some effort to compute how long to sleep, but this is perfectly fine for now. */ - *desired_delay = charts->sampling_interval == INFINITY ? -1 : charts->sampling_interval * 300.0; + *desired_delay_us = charts->sampling_interval == INFINITY ? -1 : charts->sampling_interval * 300.0; return ret; } |