├── .gitignore ├── COPYING ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── m4 └── .gitignore └── src ├── .gitignore ├── clock-boottime.c ├── clock-monotonic-coarse.c ├── clock-monotonic-raw.c ├── clock-monotonic.c ├── clock-realtime-coarse.c ├── clock-realtime.c ├── clock-tai.c ├── clock_getres_template.c ├── clock_gettime_template.c ├── compiler.h ├── getcpu.c ├── gettimeofday.c ├── util.c ├── util.h ├── vdsotest-all.in ├── vdsotest-bench.in ├── vdsotest.c └── vdsotest.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/clock-boottime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-boottime.c -------------------------------------------------------------------------------- /src/clock-monotonic-coarse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-monotonic-coarse.c -------------------------------------------------------------------------------- /src/clock-monotonic-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-monotonic-raw.c -------------------------------------------------------------------------------- /src/clock-monotonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-monotonic.c -------------------------------------------------------------------------------- /src/clock-realtime-coarse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-realtime-coarse.c -------------------------------------------------------------------------------- /src/clock-realtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-realtime.c -------------------------------------------------------------------------------- /src/clock-tai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock-tai.c -------------------------------------------------------------------------------- /src/clock_getres_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock_getres_template.c -------------------------------------------------------------------------------- /src/clock_gettime_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/clock_gettime_template.c -------------------------------------------------------------------------------- /src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/compiler.h -------------------------------------------------------------------------------- /src/getcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/getcpu.c -------------------------------------------------------------------------------- /src/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/gettimeofday.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/util.h -------------------------------------------------------------------------------- /src/vdsotest-all.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/vdsotest-all.in -------------------------------------------------------------------------------- /src/vdsotest-bench.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/vdsotest-bench.in -------------------------------------------------------------------------------- /src/vdsotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/vdsotest.c -------------------------------------------------------------------------------- /src/vdsotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlynch-mentor/vdsotest/HEAD/src/vdsotest.h --------------------------------------------------------------------------------