Tagged Questions

2
votes
1answer
96 views

Large executable causes debuggers to hang

I have a C++ binary that is 190 MB in size. When I put this binary into dbx and try to create a breakpoint, dbx hangs. While dbx is hung, I have observed its memory quickly grow to over 10 GB. ...
1
vote
1answer
360 views

How do you set the current directory of a debugged process?

I have an application that is sensitive to the directory it gets invoked from — it loads some files using relative paths. When I start the program through a debugger, how can I control what the ...
0
votes
0answers
10 views

total view debugger - debugging a process thats forked from a startup process at launch

I have application that has two executables. One that we launch and it forks n instances of the other. Now I have to debug the second tsk file at launch. I can do it later using the attach to process ...