├── .github └── workflows │ └── makefile.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── novdso.c └── test ├── .gitignore ├── Makefile ├── test_novdso ├── test_vdso └── time.c /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/README.md -------------------------------------------------------------------------------- /novdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/novdso.c -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | time -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/test_novdso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/test/test_novdso -------------------------------------------------------------------------------- /test/test_vdso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/test/test_vdso -------------------------------------------------------------------------------- /test/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danteu/novdso/HEAD/test/time.c --------------------------------------------------------------------------------