extras/timekeeping -- provide POSIX-like interface

Provide POSIX-like timekeeping utilities using system clock
to support monotonic, accurate, timezone-aware time

Implements settimeofday(), gettimeofday(), and adjtime()
Utilizes setenv() and tzset()

See README.timekeeping.md for more details
This commit is contained in:
Jeff Kletsky 2018-02-22 17:21:18 -08:00
parent 49343e9c68
commit 6902615525
16 changed files with 2630 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# Component makefile for extras/timekeeping
INC_DIRS += $(timekeeping_ROOT)
# args for passing into compile rule generation
timekeeping_SRC_DIR = $(timekeeping_ROOT)
$(eval $(call component_compile_rules,timekeeping))