[Mono-bugs] [Bug 444383] New: Calling stack trace in double nested AppDomain results in a SIGSEGV

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Nov 12 16:09:53 EST 2008


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: mono-bugs at lists.ximian.com
        ReportedBy: wasabi at larvalstage.net
         QAContact: mono-bugs at lists.ximian.com
          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.


More information about the mono-bugs mailing list