digitalmars.D.bugs - [Issue 3619] New: Thread crash on exit
- d-bugmail puremagic.com (25/25) Dec 15 2009 http://d.puremagic.com/issues/show_bug.cgi?id=3619
- d-bugmail puremagic.com (12/12) Mar 08 2010 http://d.puremagic.com/issues/show_bug.cgi?id=3619
http://d.puremagic.com/issues/show_bug.cgi?id=3619 Summary: Thread crash on exit Product: D Version: 2.036 Platform: x86 OS/Version: Mac OS X Status: NEW Severity: normal Priority: P2 Component: druntime AssignedTo: sean invisibleduck.org ReportedBy: michel.fortin michelf.com 21:51:09 EST --- The program below crashes with DMD 2.037 under Mac OS X 10.6 with a null dereference when the thread finishes. import core.thread; void threadFunc() { } void main() { auto thread = new Thread(&threadFunc); thread.start(); thread.join(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Dec 15 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3619 Walter Bright <bugzilla digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla digitalmars.com Resolution| |FIXED 22:26:14 PST --- Fixed dmd 2.041 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Mar 08 2010