MSVC 6.0 Application crashes at Start up
-
Hello My WINNT application crashes at startup. I use quite a few threads in the program. It normally happens when there is data coming in at the Asynch comm port. When i disconnect the comm cable then there in NO crash at startup. The DR Watson message says, "Access voilation : 0xc000005, Address : 0x0000080. When I look in the Map file of the Released version, the address mentioned can only be found around : comct132:COMCTL32.dll 0002:00000080 _imp_ImageList_ReplaceIcon@12 00476080 Does anyone perhaps know how I should continue from here to find the problem. Thanks Louis
-
Hello My WINNT application crashes at startup. I use quite a few threads in the program. It normally happens when there is data coming in at the Asynch comm port. When i disconnect the comm cable then there in NO crash at startup. The DR Watson message says, "Access voilation : 0xc000005, Address : 0x0000080. When I look in the Map file of the Released version, the address mentioned can only be found around : comct132:COMCTL32.dll 0002:00000080 _imp_ImageList_ReplaceIcon@12 00476080 Does anyone perhaps know how I should continue from here to find the problem. Thanks Louis
Sounds like the rx thread is receiving data before other threads have started up, perhaps expecting some processing done by other threads which doesnt get done? Can you delay that thread until all the others have started, or at least all initialisation is complete? James
-
Sounds like the rx thread is receiving data before other threads have started up, perhaps expecting some processing done by other threads which doesnt get done? Can you delay that thread until all the others have started, or at least all initialisation is complete? James