https://github.com/mindstorm38/pydld
Python DeadLock Detector
https://github.com/mindstorm38/pydld
dead-lock deadlock deadlock-detection python
Last synced: 3 months ago
JSON representation
Python DeadLock Detector
- Host: GitHub
- URL: https://github.com/mindstorm38/pydld
- Owner: mindstorm38
- License: gpl-3.0
- Created: 2020-01-30T13:36:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-14T19:29:03.000Z (almost 5 years ago)
- Last Synced: 2025-03-25T03:34:56.210Z (3 months ago)
- Topics: dead-lock, deadlock, deadlock-detection, python
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python DeadLock Detector
This is a utility library for python scripts. It simply hooks into `threading` module and change the `Lock` and `RLock` functions to return a custom object that can be automatically checked by a separate thread.
## Usage
To work efficiently on all your modules you have to init hook and start the thread at the very beginning of your main script.
You can check out the `deadlock_test.py` example file to understand where import is needed.
The custom `Lock` and `RLock` function have an optional parameter `name`, it is usefull to recognize the lock faster if deadlock is detected.
In addition to that, the module `init_hook` function has an optional parameter `only_named` that force use the default behaviour of `Lock` and `RLock` functions if parameter `name` is not specified. It can be usefull if you want to profile only specific locks..