[Mono-bugs] [Bug 70860][Nor] Changed - No stacktrace with exceptions in other threads

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 28 Dec 2004 20:35:59 -0500 (EST)


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 fxjrlists@yahoo.com.br.

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

--- shadow/70860	2004-12-28 20:10:53.000000000 -0500
+++ shadow/70860.tmp.10799	2004-12-28 20:35:59.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 70860
 Product: Mono: Runtime
 Version: 1.1
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: fxjrlists@yahoo.com.br               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -102,6 +102,31 @@
 
 with line number info when compiled and run with debug symbols.
 
 How often does this happen? 
 
 Always.
+
+------- Additional Comments From fxjrlists@yahoo.com.br  2004-12-28 20:35 -------
+
+Another test case variant:
+
+using System;
+using System.Threading;
+
+
+class NullApp
+{
+	static void Main (string [] args)
+	{
+		new Thread(new ThreadStart (NullApp.Run)).Start();
+	}
+
+	static public void Run()
+	{
+		object o = null;
+		Console.WriteLine(o.GetHashCode ());
+	}
+
+
+}
+