trap
trap copied to clipboard
A lightweight debugger library written in C.
I was looking for an article that teaches how to build a debugger and found the [page](http://system.joekain.com/debugger/). I found it very interesting, mainly because it addresses Rust, Is there any...
Currently, the breakpoint module uses a fixed size array, `g_breakpoints`, to store breakpoints. This array and its usage have a number of limitations: - Running out of space in the...
Trap currently only supports a single inferior though the API is descriptive enough to create and monitor multiple inferiors. Acceptance Criteria: - A test exists that creates two inferiors, sets...
Write another test that loads an inferior that doesn't exist and verifies that an error is returned.