-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
6
-
x86
-
linux
FULL PRODUCT VERSION :
java version "1.6.0_02-ea"
Java(TM) SE Runtime Environment (build 1.6.0_02-ea-b01)
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_02-ea-b01, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux jupiter 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:00:19 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux
EXTRA RELEVANT SYSTEM CONFIGURATION :
Dual Core
4 Gig RAM
uptodate Fedora Core 6
A DESCRIPTION OF THE PROBLEM :
Programs halts after an indeterminate number of repetitions, even though I had done nothing explicitly to cause it to halt (nor anything implicitly).
It could halt in 5, 246, 17 seconds for example. There is no obvious pattern.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run program, anddon't do anything...
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Should not halt until explicitly directed to halt.
ACTUAL -
Halts unexpectedly after an indeterminate time.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Timer;
public class TimerSample
{
public static void main(final String[] args)
{
final Runnable runnable = new Runnable()
{
int count = 0;
public void run()
{
ActionListener actionListener = new ActionListener()
{
public void actionPerformed(ActionEvent pE)
{
System.out.printf("[%d]\n", ++count);
}
};
Timer timer = new Timer(1000, actionListener);
timer.start();
}
};
EventQueue.invokeLater(runnable);
}
}
---------- END SOURCE ----------
java version "1.6.0_02-ea"
Java(TM) SE Runtime Environment (build 1.6.0_02-ea-b01)
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_02-ea-b01, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux jupiter 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:00:19 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux
EXTRA RELEVANT SYSTEM CONFIGURATION :
Dual Core
4 Gig RAM
uptodate Fedora Core 6
A DESCRIPTION OF THE PROBLEM :
Programs halts after an indeterminate number of repetitions, even though I had done nothing explicitly to cause it to halt (nor anything implicitly).
It could halt in 5, 246, 17 seconds for example. There is no obvious pattern.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run program, anddon't do anything...
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Should not halt until explicitly directed to halt.
ACTUAL -
Halts unexpectedly after an indeterminate time.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Timer;
public class TimerSample
{
public static void main(final String[] args)
{
final Runnable runnable = new Runnable()
{
int count = 0;
public void run()
{
ActionListener actionListener = new ActionListener()
{
public void actionPerformed(ActionEvent pE)
{
System.out.printf("[%d]\n", ++count);
}
};
Timer timer = new Timer(1000, actionListener);
timer.start();
}
};
EventQueue.invokeLater(runnable);
}
}
---------- END SOURCE ----------