Search hangs during debugging
Pretty much the same reason to https://github.com/Vector35/debugger/issues/346. We have only one segment that ranges from 0x0 to 0xffffffffffffffff, which the searching thread will try to scan for. This will take forever.
This will be fixed by #96
We have now disabled it for the debugger binary. This shall be reverted once we do have support for it
Now that we have dropped the use the debugger binary view, this issue becomes a larger problem since the previous temporary fix, i.e., disabling the search if it is the debugger binary view -- now no longer works. The search will try to search the entire memory space (0x0 - 0xffffffffffffffff) and hang
Closing in favor of #668