This patch is a proof of concept that shows how a scripted process could be used with real process to perform interactive debugging. In this example, we run a process that spawns 10 threads. Then, we create a intermediary scripted process who's job will be to wrap the real process while intercepting it's process events and dispatching them back either to the real process or to other child scripted processes. In this example, we have 2 child scripted processes, with even and odd thread indices. The goal is to be able to do thread filtering and explore the various interactive debugging approaches, by letting a child process running when stopping the other process and inspecting it. Another approach would be to have the child processes execution in-sync to force running every child process when one of them starts running. Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
7 lines
63 B
Makefile
7 lines
63 B
Makefile
CXXFLAGS=--std=c++17 -g
|
|
|
|
all: main
|
|
|
|
clean:
|
|
rm -rf main *.dSYM
|