﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
170	unpark new thread	Thierry Delisle	Thierry Delisle <tdelisle@…>	"The following code would be convenient to have a bunch of threads ""start at once""

{{{
thread MyThread { /*...*/ };
void main( MyThread & ) { park(); /*...*/ }

void foo() {
    MyThread mythreads[4];
    for(i; 4) {
        unpark(mythreads[i]);
    }
    /*...*/
}
}}}

This could be a little tricky because normally, park and unparks should be perfectly interleaved, but in this case ""start, unpark, park"" is similar enough to ""unpark, unpark, park"" that it might cause problems."	enhancement	closed	minor	libcfa	1.0	fixed	Park/Unpark	
