[Mono-bugs] [Bug 70561][Wis] New - [PPC] Response.Redirect JIT crash

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 14 Dec 2004 14:12:35 -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 grompf@sublimeintervention.com.

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

--- shadow/70561	2004-12-14 14:12:35.000000000 -0500
+++ shadow/70561.tmp.28744	2004-12-14 14:12:35.000000000 -0500
@@ -0,0 +1,58 @@
+Bug#: 70561
+Product: Mono: Tools
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: XSP
+AssignedTo: gonzalo@ximian.com                            
+ReportedBy: grompf@sublimeintervention.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [PPC] Response.Redirect JIT crash
+
+Calling a Response.Redirect is creating a SIGILL on PPC on XSP/Mono HEAD currently.
+
+This bug may go -> runtime; however I think it might be dealing with some of the recent 
+threading/sys.web changes.
+
+The following callback registered to a button:
+
+void Clicked (object o, EventArgs e)
+{
+                Response.Redirect ("/index.aspx");
+}
+
+Will cause the sigill (XSP and XSP2);
+
+If I try / catch around that block I get:
+
+Application_Start
+System.Threading.ThreadAbortException: Thread was being aborted
+in <0x0008c> (wrapper managed-to-native) System.Object:
+__icall_wrapper_mono_thread_interruption_checkpoint ()
+in <0x000b4> (wrapper managed-to-native) System.Threading.Thread:Abort_internal (object)
+in <0x00028> System.Threading.Thread:Abort (object)
+in <0x0007c> System.Web.HttpResponse:End ()
+in <0x00134> System.Web.HttpResponse:Redirect (string,bool)
+in <0x0002c> System.Web.HttpResponse:Redirect (string)
+in <0x000dc> ASP.session1_aspx:Clicked (object,System.EventArgs)
+
+System.Threading.ThreadAbortException: Thread was being aborted
+in <0x0016c> System.Web.UI.Page:ProcessRequest (System.Web.HttpContext)
+in (unmanaged) (wrapper xdomain-dispatch) Mono.ASPNET.XSPApplicationHost:ProcessRequest 
+(object,byte[]&,byte[]&,int,long,int,long,int,string,string,string,string,string,byte[],string)
+in <0x00114> (wrapper xdomain-dispatch) Mono.ASPNET.XSPApplicationHost:ProcessRequest 
+(object,byte[]&,byte[]&,int,long,int,long,int,string,string,string,string,string,byte[],string)
+in <0x002dc> (wrapper xdomain-invoke) Mono.ASPNET.XSPApplicationHost:ProcessRequest 
+(int,long,int,long,int,string,string,string,string,string,byte[],string)
+in <0x0017c> (wrapper remoting-invoke-with-check) Mono.ASPNET.XSPApplicationHost:
+ProcessRequest (int,long,int,long,int,string,string,string,string,string,byte[],string)
+in <0x005e0> Mono.ASPNET.XSPWorker:Run (object)
+
+-kangaroo