|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.bugs - [Issue 3747] New: D application fails with error code "c0000096 privileged instruction" under Win 7 64 bit
http://d.puremagic.com/issues/show_bug.cgi?id=3747 Summary: D application fails with error code "c0000096 privileged instruction" under Win 7 64 bit Product: D Version: 1.031 Platform: x86_64 OS/Version: Windows Status: NEW Severity: major Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: StefanLiebig web.de --- Comment #0 from Stefan Liebig <StefanLiebig web.de> 2010-01-28 02:56:57 PST --- The D application running under Win7 64 bit fails when exiting. The error details are: Problemsignatur: Problemereignisname: APPCRASH Anwendungsname: smartclient.exe Anwendungsversion: 0.0.0.0 Anwendungszeitstempel: 00000000 Fehlermodulname: smartclient.exe Fehlermodulversion: 0.0.0.0 Fehlermodulzeitstempel: 00000000 Ausnahmecode: c0000096 Ausnahmeoffset: 00016564 Betriebsystemversion: 6.1.7600.2.0.0.256.4 Gebietsschema-ID: 1031 Zusatzinformation 1: 896c Zusatzinformation 2: 896c99b20f8de3f360d5bf94d04c29ea Zusatzinformation 3: 9b53 Zusatzinformation 4: 9b53c73b99497297547530e8345d3867 (Sorry, for the German!) I tried to narrow the location of the failure and I suppose that the error occurs within gc_term(). If I omit this call the application ends without problems. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jan 28 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3747 Witold Baryluk <baryluk smp.if.uj.edu.pl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |baryluk smp.if.uj.edu.pl --- Comment #1 from Witold Baryluk <baryluk smp.if.uj.edu.pl> 2010-01-28 21:18:12 PST --- Why are you calling gc_term? It is function which shutdowns garbage collector (and deallocate everyobject). Doing it manually is really really wrong. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jan 28 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3747 --- Comment #2 from Stefan Liebig <StefanLiebig web.de> 2010-01-28 21:59:16 PST --- Hmm, but in the documentation (http://www.digitalmars.com/d/1.0/windows.html) they do a call to gc_term() just before returning from WinMain(). -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jan 28 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3747 --- Comment #3 from Stefan Liebig <StefanLiebig web.de> 2010-01-28 23:30:56 PST --- BTW, this crash only happens on Win 7 64-bit - not on Win 7 32-bit. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jan 28 2010
|