-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for watching multiple threads/goroutines simultaneously #123
Comments
Think about this a little it seems possible that you could easily hit the
|
If you're talking about splitting the terminal then it would be nice to see a tree of goroutines in a side panel, and a tree of packages, and a stacktrace, etc. |
As another thought perhaps related to this: if I'm single-stepping a program with multiple goroutines, I often don't want started goroutines to continue - I would like to be able to decide which goroutines to step at any moment. Currently, to do this, I have to add a breakpoint to the start of any code that might be started in a goroutine, which can be hard if a I'd like to see a mode where any goroutines started from the goroutine currently being stepped are left halted until I decide to step them too. |
This is more for discussion, and is kind of pie-in-the-sky, but since most Go programs are going to be highly parallel, the ability to split the terminal and show execution and source context of multiple threads or goroutines at the same time could be an interesting feature for debugging highly parallel programs.
Would like to open discussion on this, and get thoughts back.
/cc @pnasrat @ironcladlou @epipho @pmorie
The text was updated successfully, but these errors were encountered: