[Issue 3891] New: core.Thread constructors don't accept shared delegates

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Mar 7 20:37:09 PST 2010


http://d.puremagic.com/issues/show_bug.cgi?id=3891

           Summary: core.Thread constructors don't accept shared delegates
           Product: D
           Version: 2.030
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: Justin.SpahrSummers at gmail.com


--- Comment #0 from Justin Spahr-Summers <Justin.SpahrSummers at gmail.com> 2010-03-07 22:37:07 CST ---
It seems logical that Thread objects should be constructed with delegates
marked "shared," but there's no way to do this right now:

---
import core.thread;

class A {
    void doSomethingMultithreaded () shared {
        // blah blah
    }
}

void main () {
    auto a = new shared(A)();
    auto t = new Thread(&a.doSomethingMultithreaded);
    t.start();
}
---

Even in lieu of making it mandatory, an overloaded constructor making use of
this would be helpful.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list