[Issue 15947] [REG 2.069.0?] simple multithreaded program + "-profile=gc" = crash
    via Digitalmars-d-bugs 
    digitalmars-d-bugs at puremagic.com
       
    Thu Apr  6 04:35:35 PDT 2017
    
    
  
https://issues.dlang.org/show_bug.cgi?id=15947
Mihails Strasuns <mihails.strasuns.contractor at sociomantic.com> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mihails.strasuns.contractor
                   |                            |@sociomantic.com
--- Comment #4 from Mihails Strasuns <mihails.strasuns.contractor at sociomantic.com> ---
This sample is sufficient to reproduce the crash for me with -profile=gc :
---
void main ( )
{
    import core.thread;
    auto t = new Thread({
        auto x = new int;
    }).start();
}
```
--
    
    
More information about the Digitalmars-d-bugs
mailing list