Any suggestions would be appreciated.
The application runs reasonably with builtin comctl32/commctrl but there are some alignment issues which I suspect might be corrected by using the native one.
However when I try running with native ones I get two debug consoles and the application continues. (Not a problem). Basically the main program starts two other programs as OLE servers and they load and init commctl32.dll.
The stack traces in both cases are similar and indicate to me that the processes have ended up executing data. However by the time I get to disassemble the code referred to by the backtrace the code isn't there any longer.
What's my best bet for tracking this down?
I've tried winedbg with as many BreakOn.. set as possible but the processes seem to disappear from under the winedbg processes
Bill
The stack traces in both cases are similar and indicate to me that the processes have ended up executing data. However by the time I get to disassemble the code referred to by the backtrace the code isn't there any longer.
is most of the cases, it means that the program is no longer running (it may have been killed by the other program)
What's my best bet for tracking this down?
as the processes seem to be furtive, using relay traces (and friends) may be a better bet to locate the issue, and then perhaps set the bp where needed
A+
----- Original Message ----- From: "Medland, Bill" Bill.Medland@accpac.com To: "Wine devel (E-mail)" wine-devel@winehq.com Sent: Tuesday, July 09, 2002 5:51 PM Subject: Any advice on how to debug this?
Any suggestions would be appreciated.
The application runs reasonably with builtin comctl32/commctrl but there
are
some alignment issues which I suspect might be corrected by using the
native
one.
Bill,
Can you document the alignment issues for me with Bugzilla. Screen shots are fine. Traces with "+relay,+message,+tid,+win" are also great for finding these type of problems. Is the application available in a demo version??
Guy