https://bugzilla.novell.com/show_bug.cgi?id=444383
Summary: Calling stack trace in double nested AppDomain results
in a SIGSEGV
Product: Mono: Runtime
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: misc
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
QAContact: [email protected]
Found By: ---
AppDomain inside of an AppDomain, calling StackTrace. Fail.
using System;
using System.Reflection;
using System.Diagnostics;
namespace Test
{
public class Class1
{
public static void Main(string[] args)
{
AppDomain.CreateDomain("1").CreateInstance("Test",
"Test.Class1");
}
public Class1()
{
AppDomain.CreateDomain("2").CreateInstance("Test",
"Test.Class2");
}
}
public class Class2
{
public Class2()
{
new StackTrace(true);
}
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs