[Mono-bugs] [Bug 74659][Nor] New - Running static void Main () {} in a loop gets assert and long pauses

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 19 Apr 2005 13:28:38 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by bmaurer@users.sf.net.

http://bugzilla.ximian.com/show_bug.cgi?id=74659

--- shadow/74659	2005-04-19 13:28:38.000000000 -0400
+++ shadow/74659.tmp.29182	2005-04-19 13:28:38.000000000 -0400
@@ -0,0 +1,38 @@
+Bug#: 74659
+Product: Mono: Runtime
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: io-layer
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: bmaurer@users.sf.net               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Running static void Main () {} in a loop gets assert and long pauses
+
+I compiled:
+
+class X {
+	static void Main ()
+	{
+	}
+}
+
+And then did:
+
+while true; do /usr/bin/time -f %E mono foo.exe; done
+
+Most of the time, the program ran as expected. However, about 1% of the
+time, I got
+
+** (foo.exe:7319): WARNING **: _wapi_timestamp_exclusion: Breaking a
+previous timestamp
+
+Most of the time when I got that message, the process took a long time to
+exit -- between 1 second and 10 seconds vs .02 seconds normally