├── .gitignore ├── LICENSE ├── README.md ├── criu-coredump ├── criu_coredump ├── .gitignore ├── __init__.py ├── core_dump.py └── elf.py ├── setup.py └── test ├── .gitignore ├── Makefile ├── loop.c └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/README.md -------------------------------------------------------------------------------- /criu-coredump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/criu-coredump -------------------------------------------------------------------------------- /criu_coredump/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /criu_coredump/__init__.py: -------------------------------------------------------------------------------- 1 | from core_dump import * 2 | -------------------------------------------------------------------------------- /criu_coredump/core_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/criu_coredump/core_dump.py -------------------------------------------------------------------------------- /criu_coredump/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/criu_coredump/elf.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/setup.py -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | stats-dump 2 | *.log 3 | *.img 4 | loop 5 | core.* 6 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/test/loop.c -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efiop/criu-coredump/HEAD/test/test.sh --------------------------------------------------------------------------------