mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
There is currently a problem related to time keeping. We're mixing
the functions to perform calculations with the os-dependent code
needed to retrieve and adjust the local time.
This patch extracts from time.{c,h} the parts that are solely dedicated
to time keeping. These are the "now" or "before_poll" variables for
example, as well as the various now_*() functions that make use of
gettimeofday() and clock_gettime() to retrieve the current time.
The "tv_*" functions moved there were also more appropriately renamed
to "clock_*".
Other parts used to compute stolen time are in other files, they will
have to be picked next.
|
||
|---|---|---|
| .. | ||
| cli.h | ||
| conf.h | ||
| config.h | ||
| debug.h | ||
| define.h | ||
| event.h | ||
| filter.h | ||
| group.h | ||
| http.h | ||
| include.h | ||
| opentracing.h | ||
| parser.h | ||
| pool.h | ||
| scope.h | ||
| util.h | ||
| vars.h | ||