Mail Archives: djgpp/2001/07/31/04:41:45
On Mon, 30 Jul 2001, jansb000 wrote:
> Q: Why is symify not able to give me all the line-numbers? (it shows double
> questionmarks instead).
The answer to that is in the sources of maptfile.cpp and mapview.cpp,
which you didn't show. For example, if the code for the crashed
functions comes from some #include'd header file, the COFF debug info
lists wrong line numbers there.
GDB might be of more help here, especially if you compile the program
with -gstabs+ switch instead of -g. Section 9.3 of the FAQ tells how
to display a source line given the value of EIP where the program
crashed.
Btw, in your case, the first place to look would be the bad selector
loaded into FS:
> fs: sel=00d7 invalid
Did you use some function such as _farpeekb in some wrong way?
- Raw text -