[Mono-bugs] [Bug 38095][Nor] New - New application domain creation causes hang

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Fri, 14 Feb 2003 07:45:29 -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 imitko@openlinksw.co.uk.

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

--- shadow/38095	Fri Feb 14 07:45:28 2003
+++ shadow/38095.tmp.25269	Fri Feb 14 07:45:28 2003
@@ -0,0 +1,49 @@
+Bug#: 38095
+Product: Mono/Runtime
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: imitko@openlinksw.co.uk               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: New application domain creation causes hang
+
+When a new domain have created the compiled binary causes mono to hang.
+
+Steps to reproduce the problem:
+1. compile the example bellow as 'mcs mydom.cs'
+2. run it 'mono mydom.exe'
+3. *hang*, never returns to prompt 
+
+Actual Results:
+hangs after debug text output
+
+
+Expected Results:
+to return to the prompt after execution
+
+How often does this happen? 
+Always
+
+Additional Information:
+code of mydom.cs
+................
+using System;
+
+class myclass
+{
+        static void Main ()
+        {
+                AppDomain domain = AppDomain.CreateDomain ("mydomain");
+                Console.WriteLine ("test");
+        }
+}
+...........