* darwin_stop_world.c: Correct the structure name on Darwin-x86 for Leopard.
svn path=/trunk/mono/; revision=88924
+2007-11-05 Geoff Norton <gnorton@novell.com>
+
+ * darwin_stop_world.c: Correct the structure name on Darwin-x86 for Leopard.
+
2007-11-05 Geoff Norton <gnorton@novell.com>
* darwin_stop_world.c: Also push ebp when pushing all stacks on Leopard
if(r != KERN_SUCCESS) ABORT("thread_get_state failed");
#if defined(I386)
-#if defined(_STRUCT_X86_EXCEPTION_STATE)
+#if defined(_STRUCT_X86_EXCEPTION_STATE32)
lo = state.__esp;
GC_push_one(state.__eax);
(natural_t *)&info, &outCount);
if(r != KERN_SUCCESS) continue;
-#if defined(_STRUCT_X86_EXCEPTION_STATE)
+#if defined(_STRUCT_X86_EXCEPTION_STATE32)
lo = (void*)info.__esp;
hi = (ptr_t)FindTopOfStack(info.__esp);