Custom Query (81 matches)
Results (28 - 30 of 81)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#36 | worksforme | Crash report | ||
Description |
I don't have the debug version and so I'm just going to send this info and hope you find it useful. Just installed 0.6.21659 (2011-06-27) and removed from config.sys (but files still on drive) ver 050327 My system is SMP, running 2 cpu's under eCS v1.24. Kernel is build Signature: @#IBM:14.104a#@_SMP IBM OS/2 Kernel Vendor: IBM Revision: 14.104 File Version: 14.104 Description: _SMP IBM OS/2 Kernel Previously running odin 050327 with winrar v3.0 (it ran fine and if I start it with \050327\pe it still runs fine). Winrar is the only app I have tried. It crashes under this new version of odin. The program starts, draws a windows and then crashs (with no hangs). From popuplog: 06-28-2011 23:43:13 SYS3175 PID 0077 TID 0001 Slot 00d5 D:\APPS\ODIN\SYSTEM32\PE.EXE c0000005 1cf8cedd P1=00000001 P2=00000000 P3=XXXXXXXX P4=XXXXXXXX EAX=00000000 EBX=000f0000 ECX=5dbf4050 EDX=000f0000 ESI=00000000 EDI=00000000 DS=0053 DSACC=f0f3 DSLIM=ffffffff ES=0053 ESACC=f0f3 ESLIM=ffffffff FS=0537 FSACC=00f3 FSLIM=00000fff GS=0000 GSACC= GSLIM= CS:EIP=005b:1cf8cedd CSACC=f0df CSLIM=ffffffff SS:ESP=0053:00129b58 SSACC=f0f3 SSLIM=ffffffff EBP=00129bdc FLG=00010256 KERNEL32.DLL 0001:0001cedd I can provide the procdump file if you wish, it's 1.6MB file. My apologies for not having the info you need from a debug version. Rgds, Jon |
|||
#7 | fixed | Add support for __try/__except | ||
Description |
The windows code often uses try/except (this is a MSVC compiler extension to support structured exception handling). We need to support this extension to simplify porting Windows applications. |
|||
#10 | fixed | Missing WinSock2 constants | ||
Description |
There is a bunch of constants (such as IP_ADD_MEMBERSHIP) that were redefined by Microsoft in WinSock2 and have values incompatible with WinSock1. We miss these new defines in Odin headers and simply fall back to old ones. While it seems to work at binary level (because the values for constants supplied to Odin by the application are taken from the real MS SDK when the application is built and get properly recognized by the new WinSock2 APIs in the Odin code), compiling applications at source level drags the old constants in while actually calling the new WinSock2 APIs and as a result these APIs get wrong parameters and return a failure. |