├── .editorconfig ├── LICENSE ├── Makefile ├── README.md ├── debian ├── changelog ├── control ├── control.in ├── copyright ├── gitlab-ci.yml ├── pgversions ├── rules ├── source │ └── format ├── tests │ ├── control │ └── crash └── watch ├── pg_crash.c └── pg_crash.spec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/control -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/gitlab-ci.yml -------------------------------------------------------------------------------- /debian/pgversions: -------------------------------------------------------------------------------- 1 | 11+ 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/tests/control -------------------------------------------------------------------------------- /debian/tests/crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/tests/crash -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/debian/watch -------------------------------------------------------------------------------- /pg_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/pg_crash.c -------------------------------------------------------------------------------- /pg_crash.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/pg_crash/HEAD/pg_crash.spec --------------------------------------------------------------------------------