Skip to content
This repository was archived by the owner on Oct 16, 2025. It is now read-only.

Latest commit

 

History

History
20 lines (12 loc) · 797 Bytes

File metadata and controls

20 lines (12 loc) · 797 Bytes

MapleDeadlockTracker

Head developer: Ronan C. P. Lana

About

It's a developer tool designed to pick and line potential deadlock issues throughout a Java project.

How to use

  • Install the Tracker folder in the same directory of the target project.
  • Then, build and run.
  • The result of the search should be found in the console.

Contents such as code entry points and source directory (and subdirectories) to search are configured within the config.cfg file.

Observations

  • This program does a static review over the source code. Object interactions are not treated dynamically, here.
  • Script calls are noted as potential deadlock issuers if not treated properly. That so, the program informs when a given script handler (e.g., Invocable) runs scripts holding locks.