Dr.Watson Log

  • Thread starter Thread starter DL
  • Start date Start date
D

DL

I have an app that has started generating errors - previously OK -
The vendor says its a system problem and thus cannot help, of course!
The error, only occurs when using one specific 'menu part' of the App.
According to Dr.Watson it appears to be an application 'stack overflow' but
I'm having difficulty in interpreting the log any further.
Any guidence?
thanks
 
Assuming the OS is OK, just the appspace is crashing:

- Check that app sets its own stack size(s); see if there's a way to
enlarge that allocation. I believe it's normally the case than an app
declares the stacksize it needs.
- Check that no infinite recursion can be set up by any use of the app;
this will blow away any stack.
- Check that under no conditions will the app place a very large demand
(like a large matrix) on the stack.

App tech support might be willing to explore the above with you.

MS might be willing to tell you whether there's a "trigger" condition
involving stack allocation at which point the sys will kill the app. Or,
conceivably, refuse to fully honor a stackspace request and regardless
of consequences.
 
ugh!

Unfortunately the vendor simply repeats that it is a sys problem - it is a
bus. app, purportedly much used -
Because of the numerous protection (copying app) features built into the
installation I am unable to 'simply' uninstall and reinstall on a different
system to test.

ta
 
Further,
From the err.log how do I, within registry or?, identify the application
shown in the error log as 'PID=1944'
searching regedit produces nil
ta
 
Thanks, silly me was not reading the log correctly :(

Presumably the module listing that follows, in the log, refer to the modules
loaded by the App that generated the error?
However the module list is only a list of addresses, no names are given.
This means they are not win modules?

ta
 
Thanks, unfortunately I have insufficient expertise to determin, using this
or Dependancy Walker as to whether the problem lies with the sys or the
application.
ta
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top