 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Dennis Cote Guest
|
Posted: Thu May 10, 2007 10:50 pm Post subject: assert and codeguard causes IDE to hang |
|
|
Hi All,
I have been having lots of problems with assertions causing the IDE to
hang. I have assert calls in my application and I have codeguard
enabled. When an assertion fails I get the assertion dialog displayed
and then an abnormal program termination dialog (when the assert handler
calls terminate). This is as expected.
The problem happens when I click OK in the abnormal termination dialog.
At this point I have been getting a variety of different failure modes,
almost all of which end with the IDE hung. It is completely unresponsive
with the IDE using as much CPU as it can get (typically about 97%)
according to the windows Task Manager. The only way out I have found is
to use task manager to end the BDS process.
Today I got a slightly different variation which may have shed some
light on the issue. The IDE did not hang, instead it displayed an access
violation exception dialog and I clicked break. Much to my surprise it
responded and broke into the debugger.
I then looked at the call stack to see where it was executing. This was
very interesting. The calls stack was 1561 lines long, and included
everything back to the abort call triggered by the assert failure. I
have copied the call stack below.
As you can see the abort call tried to terminate the process, which
ended up in the codeguard library (presumably it has registered some
kind of atexit handler). It then entered a recursive loop with codeguard
calling an exception dispatcher, which calls something in my
application, which calls System::GetMem, which re-enters codeguard,
which loops to call the exception dispatcher again. This loop is
repeated 182 times!
I think this ran until the stack overflowed and generated an access
violation exception, which was trapped outside this loop and let me get
control again. I suspect something similar has been happening in those
cases where the IDE hangs, only it usually manages to trash the IDE
causing it to hang, or it ends in a loop that doesn't cause the stack to
grow.
I have a few questions though. Why does this stack trace not show the
symbolic names for the functions in my application when it normally
does, and in fact was showing them correctly just before the assertion
failure that triggered this? In fact when I click on an entry in the
call stack it correctly shows the symbolic information in the CPU window.
The debugger shows the lines in my application inside this loop as
system.pas 9981 (0x0094c209) and sysutils.pas 14241 (0x0093de61). Note,
I am not using dynamic runtime libraries so all system library routines
are statically linked into my application. So this problems seems to be
a bad interaction between codeguard and the system libraries.
After 57 iterations of this recursive loop the sequence changes (I have
inserted a blank line at this point in the stack dump below). The
debugger starts showing the lines in my application (which are at the
same address) using all uppercase text for the address and symbolic
names for these functions; Sysutils::GetExceptionObject and
System::__linkproc__ HandleAnyExcpetion. Why would this change part way
through a stack dump?
Does anyone have any ideas for other things to check? I will leave my
debugger sitting where it is for a while in case anyone has a good idea.
Thanks for taking the time to read this long post, and any suggestions.
Dennis Cote
:00a046f5 ____ExceptionHandler + 0x9
:009f21c9 __ExceptionHandler + 0x1E
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00032884)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE56 Sysutils::GetExceptionObject(P=:00032D18)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:7c91086e ntdll.RtlImageDirectoryEntryToData + 0x18
:7c9379f0 ; ntdll.dll
:7c93799c ; ntdll.dll
:7c9378c5 ; ntdll.dll
:7c93783a ; ntdll.dll
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00034778)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00035D8C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000373A0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000389B4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00039FC8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0003B5DC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0003CBF0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0003E204)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0003F818)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00040E2C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00042440)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00043A54)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00045068)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0004667C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00047C90)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000492A4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0004A8B8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0004BECC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0004D4E0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0004EAF4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00050108)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0005171C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00052D30)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00054344)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00055958)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00056F6C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00058580)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00059B94)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0005B1A8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0005C7BC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0005DDD0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0005F3E4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000609F8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006200C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00063620)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00064C34)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00066248)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006785C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00068E70)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006A484)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006BA98)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006D0AC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006E6C0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0006FCD4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000712E8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000728FC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00073F10)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00075524)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00076B38)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0007814C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00079760)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0007AD74)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0007C388)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0007D99C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0007EFB0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000805C4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00081BD8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000831EC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00084800)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00085E14)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00087428)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00088A3C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0008A050)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0008B664)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0008CC78)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0008E28C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0008F8A0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00090EB4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000924C8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00093ADC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000950F0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00096704)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:00097D18)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0009932C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0009A940)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0009BF54)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0009D568)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:0009EB7C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A0190)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A17A4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A2DB8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A43CC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A59E0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A6FF4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A8608)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000A9C1C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000AB230)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000AC844)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000ADE58)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000AF46C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B0A80)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B2094)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B36A8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B4CBC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B62D0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B78E4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000B8EF8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000BA50C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000BBB20)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000BD134)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000BE748)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000BFD5C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C1370)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C2984)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C3F98)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C55AC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C6BC0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C81D4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000C97E8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000CADFC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000CC410)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000CDA24)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000CF038)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D064C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D1C60)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D3274)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D4888)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D5E9C)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D74B0)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000D8AC4)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000DA0D8)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000DB6EC)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000DCD00)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000DE314)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094AC8E System::__linkproc__ GetMem(Size=????)
:0093DE61 Sysutils::GetExceptionObject(P=:000DF928)
:0094C209 System::__linkproc__ HandleAnyException()
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01661 CG32.@_cg_SysGetMem + 0x9
:0094ac8e System::__linkproc__ GetMem(int) + 0xA
:0093de61 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:0094c209 ; C:\DXL\test_2006\PC\DXL_Admin\DXL.exe
:7c90378b ntdll.RtlConvertUlongToLargeInteger + 0x46
:7c90eafa ntdll.KiUserExceptionDispatcher + 0xe
:0cd014e6 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG32.DLL
:0cd01554 ; C:\PROGRA~1\Borland\BDS\4.0\Bin\CG |
|
| Back to top |
|
 |
Dennis Cote Guest
|
Posted: Fri May 11, 2007 10:03 pm Post subject: Re: assert and codeguard causes IDE to hang |
|
|
Dennis Cote wrote:
| Quote: |
I have been having lots of problems with assertions causing the IDE to
hang. I have assert calls in my application and I have codeguard
enabled. When an assertion fails I get the assertion dialog displayed
and then an abnormal program termination dialog (when the assert handler
calls terminate). This is as expected.
The problem happens when I click OK in the abnormal termination dialog.
At this point I have been getting a variety of different failure modes,
almost all of which end with the IDE hung. It is completely unresponsive
with the IDE using as much CPU as it can get (typically about 97%)
according to the windows Task Manager. The only way out I have found is
to use task manager to end the BDS process.
|
I probably should have said that I am using BDS 2006 C++ personality
with all updates and hotfixes applied.
To confirm that the problem is related to codeguard I rebuilt my
application with codeguard disabled, and repeated the same actions to
trigger the assertion failure. Now the application terminates and
returns directly to the debugger immediately after I click the OK button
in the abnormal program termination dialog.
It looks like it's time to give up on codeguard.
Dennis Cote |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|