Ivan Sorokin

Results 7 comments of Ivan Sorokin

Today I've got an EDG hang. The callstack and local variables are available here: https://gist.github.com/sorokin/8d5bc5b0a978c1cc284689f49285e881 . At the callstack EDG is hanging on waitpid for process 9953. While the process...

> If not, we might just as well ignore this "leak", since it doesn't lead to systematic increase in memory consumption over EDB run time. This approach make it difficult...

I looked at what qactions have shortcuts and apparently there is only one such action: Assemble (Space). I guess I can just introduce a new function something like IPlugin::globalShortcuts to...

> I can definitely imagine a test that use the DebuggerCore plugin directly, uses it to manipulate a test binary, and looks at the results. That is certainly a "independent"...

Thank you for the response. > I've been pretty busy at work, but I'll try to take a closer look asap. That's totally fine. I don't mind if the PR...

> Though I'm unsure about the globalShortcuts concept. That's why I'm not sure about it either. But I don't know better solution. The problem I had was the following. Conceptually...

I updated the PR by removing unneeded usage of std::cerr that I used for debug. ``` diff --git a/src/Debugger.cpp b/src/Debugger.cpp index e3590e70..0acb725e 100644 --- a/src/Debugger.cpp +++ b/src/Debugger.cpp @@ -863,7 +863,6...