├── .gitignore ├── LICENSE ├── README.md ├── deadlockExample.c ├── displayDeadlock.sh ├── gdbDisplayLockedThreads.py └── gdbcommands /.gitignore: -------------------------------------------------------------------------------- 1 | core 2 | deadlockExample 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/README.md -------------------------------------------------------------------------------- /deadlockExample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/deadlockExample.c -------------------------------------------------------------------------------- /displayDeadlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/displayDeadlock.sh -------------------------------------------------------------------------------- /gdbDisplayLockedThreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/gdbDisplayLockedThreads.py -------------------------------------------------------------------------------- /gdbcommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamZiobro/gdb-automatic-deadlock-detector/HEAD/gdbcommands --------------------------------------------------------------------------------