Code: Show/Hide a = 1;
while (a) b++; // how do we get here? |
Code: Show/Hide <html>
<form> <input type crash> </form> </html> |
Code: Show/Hide volatile int a;
ThreadFunc() { while(1) a = 0; } int main() { int b; startThread(&ThreadFunc); a = 1; while (a) b++; return 0; } |
Cyan~Fire wrote: |
D1s, I don't think you quite understand the debugger commands. You can't just skip a section of code, that would cause quite a few problems and wouldn't be too useful. The only call it skipping because it's going too fast to see. ![]() |