├── .editorconfig ├── .fmf └── version ├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── fatrace.8 ├── fatrace.c ├── packaging └── fatrace.spec ├── packit.yaml ├── plans └── all.fmf ├── power-usage-report └── tests ├── __init__.py ├── main.fmf ├── run-container ├── simple-touch.c ├── slow-exit.c └── test.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | /fatrace 4 | /tests/simple-touch 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/README.md -------------------------------------------------------------------------------- /fatrace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/fatrace.8 -------------------------------------------------------------------------------- /fatrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/fatrace.c -------------------------------------------------------------------------------- /packaging/fatrace.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/packaging/fatrace.spec -------------------------------------------------------------------------------- /packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/packit.yaml -------------------------------------------------------------------------------- /plans/all.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/plans/all.fmf -------------------------------------------------------------------------------- /power-usage-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/power-usage-report -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/main.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/tests/main.fmf -------------------------------------------------------------------------------- /tests/run-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/tests/run-container -------------------------------------------------------------------------------- /tests/simple-touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/tests/simple-touch.c -------------------------------------------------------------------------------- /tests/slow-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/tests/slow-exit.c -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpitt/fatrace/HEAD/tests/test.py --------------------------------------------------------------------------------