mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 17:39:19 +00:00
Debugger reports other threads running when breakpoint hit #147
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adelphes on 1/27/2017
When a breakpoint is hit, the active thread is marked as paused and the call stack displayed - the other threads are marked as still running. This is incorrect - the debugger actually stops all threads.
This is apparent when a new thread is started and a breakpoint hit within it - the debugger shows the thread as paused, but the main UI thread is clearly paused too.