ce961468b7
2004-07-27 Bryce McKinlay <mckinlay@redhat.com> * testsuite/libjava.lang/TLtest.java: Reduce sleep time. * testsuite/libjava.lang/Thread_Alive.java: Remove old email address. Reduce sleep time. * testsuite/libjava.lang/Thread_HoldsLock.java: Modify to work around compiler bug. * testsuite/libjava.lang/Thread_Interrupt.java: Remove old email address. Reduce sleep times. Synchronize with target threads before attempting to interrupt them. Don't try to calibrate yeild count, instead, always loop for a fixed time. * testsuite/libjava.lang/Thread_Join.java: Remove old email address. * testsuite/libjava.lang/Thread_Monitor.java: Likewise. * testsuite/libjava.lang/Thread_Wait.java: Likewise. * testsuite/libjava.lang/Thread_Wait_2.java: Likewise. * testsuite/libjava.lang/Thread_Wait_Interrupt.java: Likewise. * testsuite/libjava.lang/pr179.java: Likewise. * testsuite/libjava.lang/Thread_Sleep.java: Likewise. Reduce sleep time. Remove upper bounds check on sleep time. From-SVN: r85248
68 lines
1.1 KiB
Java
68 lines
1.1 KiB
Java
// Many threads join a single thread.
|
|
|
|
class Sleeper implements Runnable
|
|
{
|
|
int num = -1;
|
|
|
|
public Sleeper(int num)
|
|
{
|
|
this.num = num;
|
|
}
|
|
|
|
public void run()
|
|
{
|
|
System.out.println("sleeping");
|
|
try
|
|
{
|
|
Thread.sleep(500);
|
|
}
|
|
catch (InterruptedException x)
|
|
{
|
|
System.out.println("sleep() interrupted");
|
|
}
|
|
System.out.println("done");
|
|
}
|
|
}
|
|
|
|
class Joiner implements Runnable
|
|
{
|
|
Thread join_target;
|
|
|
|
public Joiner(Thread t)
|
|
{
|
|
this.join_target = t;
|
|
}
|
|
|
|
public void run()
|
|
{
|
|
try
|
|
{
|
|
long start = System.currentTimeMillis();
|
|
join_target.join(2000);
|
|
if ((System.currentTimeMillis() - start) > 1900)
|
|
System.out.println("Error: Join timed out");
|
|
else
|
|
System.out.println("ok");
|
|
}
|
|
catch (InterruptedException x)
|
|
{
|
|
System.out.println("join() interrupted");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
public class Thread_Join
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
Thread primary = new Thread(new Sleeper(1));
|
|
primary.start();
|
|
for (int i=0; i < 10; i++)
|
|
{
|
|
Thread t = new Thread(new Joiner(primary));
|
|
t.start();
|
|
}
|
|
}
|
|
}
|