| View previous topic :: View next topic |
| Author |
Message |
Cherish
Joined: 16 Jun 2012 Posts: 1
|
Posted: Mon Jul 02, 2012 2:41 pm Post subject: Ignoring stop statements |
|
|
| I'm trying to debug some (very old) Fortran code, which uses stop statements. Every time I encounter one with the debugger, it terminates execution. I think I need to use the 'ignore' command to work past it, but I'm not sure what the signal is that I want to ignore. |
|
| Back to top |
|
 |
mkcolg
Joined: 30 Jun 2004 Posts: 5001 Location: The Portland Group Inc.
|
Posted: Mon Jul 02, 2012 5:07 pm Post subject: |
|
|
Hi Cherish,
The STOP statement is used by a programmer to terminate execution and there isn't a way to ignore them. Your could rewrite the code and remove them but my assumption is that the original programmer put them in for a reason. Can you determine why the STOP statement is being encountered? Is the program doing some self checking and determined that it's in an error state?
- Mat |
|
| Back to top |
|
 |
|