Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error position

Status
Not open for further replies.

enghai

Programmer
Jul 11, 2003
3
TH
after i debugging a program , the error message are asw follow:Loaded 'C:\WINDOWS\SYSTEM\KERNEL32.DLL', no matching symbolic information found.
The thread 0xFFE5043B has exited with code -1 (0xFFFFFFFF).
First-chance exception in plascon1.exe: 0xC0000005: Access Violation.
The thread 0xFFE534C7 has exited with code -1073741667 (0xC000009D).
The program 'C:\Windows\Desktop\Dr Park plascon 4703\Debug\plascon1.exe' has exited with code -1073741667 (0xC000009D).
Question:
I just want to know, how to find the position of thread 0xFFE534C7 and code -1073741667 (0xC000009D) in visual fortran. what function should i use to find it out in the fortran program?
Thanks
I hope somebody can answer me.



 
I don't know Visual Fortran but I do know Visual C++ and I'm just assuming that they are from the same lineage. Anyway
1) set a breakpoint at the start of program.
2) Under the Debug menu, there is a submenu Exceptions. Select that
3) A dialog will pop up with a whole bunch of exceptions.
Look for C0000090 - Invalid Float Operation. The Action probably says "Stop if not handled". Click on C0000090 and then click on "Stop Always"
4) Click OK to save
5) Continue running your program. Hopefully it will stop where the error occurs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top