kerneltest/e32test/misc/t_tmout.cpp
changeset 109 b3a1d9898418
parent 0 a41df078684a
child 257 3e88ff8f41d5
--- a/kerneltest/e32test/misc/t_tmout.cpp	Mon May 03 13:47:38 2010 +0300
+++ b/kerneltest/e32test/misc/t_tmout.cpp	Fri May 14 17:13:29 2010 +0300
@@ -132,12 +132,11 @@
 	RandomSignalInterval = interval;
 	RandomSignalCount = interval;
 
-	FOREVER
+	volatile TInt forever = 1;
+	while(forever)
 		{
 		test.Printf(_L("Total: %8d Timeout: %8d Bad: %4d Bad0: %4d Bad1: %4d\n"), TotalCount, TimeoutCount, BadCount, Bad0Count, Bad1Count);
 		User::After(1000000);
 		}
-
-
 	return 0;
 	}