Is there a debugger or feature of a debugger that allows me to tell the debugger "if this breakpoint is not reached every X ms break the program wherever it is"?
The Rust Programming Language Forum
Is there a debugger or feature of a debugger that allows me to tell the debugger "if this breakpoint is not reached every X ms break the program wherever it is"?
I'm currently investigating a really confusing bug in bevy, I have ruled out just about everything (it's windowing related but not winit, the winit integration, or literally anything that responds to winit events). whenever the bug occures the entire app freezes and/or the window disappears for ~250ms, and bevy runs in a event loop, which usually takes <10ms per iteration. if I placed a breakpoint somewhere in the event loop bevy will run past it every <10ms unless the bug occures, at which po...
0 comments
No comments yet.