Next: Following are possible causes
Up: Debugging tools
Previous: Following are possible causes
  Contents
The most ubiquitous problem is a program going in an infinite loop.
For this do the following steps:
- Run dbx program_name.
- Execute the program by run [argument list].
At this point the program is in infinite loop.
- Press ctrl-c and break the loop.
- See the trace by the command t.
The very first function listed in the trace contains the infinite loop.
- Single step inside the function.
Sushil Prasad
2004-09-16