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: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Michel Fortin <[email protected]> 2009-12-15
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: -------