Hello - I have a stock market application I am using to run tests. In short, the application stores price data in memory in the form of long integer arrays, and mimics buys and sells by moving through these arrays.
I occasionally get a GPF - not always, so it's frustrating to locate. I've been checking array boundaries and these seem to be OK.
Stepping through with the debugger is too slow and impractical. I run roughly 24000 optimisation loops in about 1-2 hours, and the error seems to come half way through these.
I tried using #DEBUG ERROR ON - and the application runs through without GPFing. However, it is not telling me where the problem is!
Is there a way to set some debug code so that instead of GPF, I get "error x at line y ..." or something like that?
Many thanks,
Alex
I occasionally get a GPF - not always, so it's frustrating to locate. I've been checking array boundaries and these seem to be OK.
Stepping through with the debugger is too slow and impractical. I run roughly 24000 optimisation loops in about 1-2 hours, and the error seems to come half way through these.
I tried using #DEBUG ERROR ON - and the application runs through without GPFing. However, it is not telling me where the problem is!
Is there a way to set some debug code so that instead of GPF, I get "error x at line y ..." or something like that?
Many thanks,
Alex
Comment