Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
service/debugger: Remove target lock on GetBufferedTracepoints (go-de…
…lve#2645) There is already a lock on the actual buffered tracepoints collection within proc, and this method call doesn't do anything to mutate Target otherwise so we shouldn't be opening ourselves up for a race condition error or any other kind of parallelism problem. Additionally, with this lock we essentially can never get the data until the process has exited becuase `continue` will lock the target. This change allows us to get the buffered tracepoint information immediately and display it as the program is running.
- Loading branch information