[Mono-bugs] [Bug 36545][Nor] Changed - Embedding: Invoking a constructor fails
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Fri, 10 Jan 2003 12:45:49 -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 duncan@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=36545
--- shadow/36545 Thu Jan 9 16:25:06 2003
+++ shadow/36545.tmp.2486 Fri Jan 10 12:45:49 2003
@@ -1,14 +1,14 @@
Bug#: 36545
Product: Mono/Runtime
Version: unspecified
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: misc
AssignedTo: lupus@ximian.com
ReportedBy: alp@atoker.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -86,6 +86,32 @@
meth = mono_method_desc_search_in_class (desc, test_class);
if (meth == 0) g_error ("no such meth");
mono_runtime_invoke (meth, 0, 0, 0);
return 0;
}
+
+------- Additional Comments From duncan@ximian.com 2003-01-10 12:45 -------
+I'm seeing the same error when I try to run gtk-sharp apps.
+
+diphthong:~/src $ mono window.exe
+
+** (window.exe:8532): WARNING **: Exception insinde function without
+unwind info
+** ERROR **: file exception.c: line 850 (arch_handle_exception):
+should not be reached
+aborting...
+Aborted
+
+class Test
+{
+ static void Main ()
+ {
+ System.Console.WriteLine ("Hello World!");
+ Gtk.Application.Init ();
+ Gtk.Window w = new Gtk.Window ("Test");
+
+ w.ShowAll ();
+ Gtk.Application.Run ();
+ }
+}
+