I could need a hand to solve a problem

Questions about Wine on Linux
Locked
User avatar
rawfox
Level 3
Level 3
Posts: 59
Joined: Tue Oct 05, 2010 10:59 am

I could need a hand to solve a problem

Post by rawfox »

We have a bug in SWTOR that naggs me pretty mutch.
I'd like to learn the meanings of this:

Code: Select all

0017:trace:seh:raise_exception code=c0000094 flags=0 addr=0x8744c9 ip=008744c9 tid=0017
0017:trace:seh:raise_exception  eax=00000000 ebx=00000000 ecx=0aa7e394 edx=00000000 esi=00000000 edi=29ee56b8
0017:trace:seh:raise_exception  ebp=0aa7e2f4 esp=0aa7e2d0 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00010246
0017:trace:seh:call_stack_handlers calling handler at 0x12929c0 code=c0000094 flags=0
0017:Call KERNEL32.GetLastError() ret=78543849
what exception code is c0000094 and where can i find a reference to the exception codes ?
same with the handler at 0x12929c0 ...
finally the error reference code table, where can i find that ?

i could need a hand in this.

cheers ^^
User avatar
André H.
Moderator
Moderator
Posts: 202
Joined: Sun Dec 07, 2008 8:33 am

Re: I could need a hand to solve a problem

Post by André H. »

it's STATUS_INTEGER_DIVIDE_BY_ZERO
http://source.winehq.org/git/wine.git/b ... ntstatus.h

the handler at 0x12929c0 is most likely a function of the application you're running
it's possible to hack wine to always handle exceptions

have a look at http://source.winehq.org/git/wine.git/b ... nal_i386.c
Locked