{5} Assigned, Active Tickets by Owner (Full Description) (2 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

sean

Ticket Summary Component Milestone Type Created
Description
#22 race condition when migrating fibers to different threads component1 defect 04/15/09

See http://www.dsource.org/projects/tango/ticket/1495 for a description of the problem, and a patch to fix (should hopefully apply cleanly to druntime's version of thread.d).


#23 core.thread silently allows sharing of local data component1 defect 05/16/09

For example...

struct foo{ // not shared

int i; // not shared void run(){ while(1) i++; } void runParallel(){

auto g = new ThreadGroup?; g.create(&this.run); g.create(&this.run); g.joinAll;

}

}

void main(){

foo f; // not shared foo.runparallel();

}


Note: See TracReports for help on using and creating reports.