[LEDE-DEV] [PATCH 3/3] Add debug output for service_timeout

Philip Prindeville philipp_subx at redfish-solutions.com
Thu Sep 28 12:35:35 PDT 2017


Inline

Sent from my iPhone
> On Sep 28, 2017, at 1:09 AM, Philipp Meier <philipp.meier at neratec.com> wrote:
> 
> Signed-off-by: Philipp Meier <philipp.meier at neratec.com>
> ---
> service.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/service.c b/service.c
> index 0a9e25d..97b6f91 100644
> --- a/service.c
> +++ b/service.c
> @@ -121,8 +121,10 @@ service_timeout(struct service *s)
> {
>    time_t t = monotonic_time();
> 
> -    if (t - s->t <= TOUT_LOOKUP)
> +    if (t - s->t <= TOUT_LOOKUP) {
> +        DBG(2, "t=%lu, s->t=%lu, t - s->t = %lu\n", t, s->t, t - s->t);

Do you need to write "t - s->t" or would "elapsed", "remaining", or even "delta" be more descriptive?


>        return 0;
> +    }
> 
>    return t;
> }
> -- 
> 2.7.4
> 




More information about the Lede-dev mailing list