Home | History | Annotate | Download | only in unittest

Lines Matching refs:t3

194   MyThread t1(Worker1), t2(Worker2), t3(Worker3), t4(Worker4);
197 t3.Start(); usleep(100);
199 t1.Join(); t2.Join(); t3.Join(); t4.Join();
218 MyThread t1(Worker1), t2(Worker2), t3(Worker3);
221 t3.Start(); usleep(100);
222 t1.Join(); t2.Join(); t3.Join();
372 t3(Thread3, NULL, "buggy reader");
376 t3.Start();
380 t3.Join();
434 t3(Thread3, NULL, "good reader"),
437 t3.Start();
438 // t2 goes after t3. This way a pure happens-before detector has no chance.
446 t3.Join();