"popl %ebp\n\t"
"ret" );
+#define HAVE_VM86
+
#endif /* linux */
#ifdef BSDI
}
-#ifdef linux
+#ifdef HAVE_VM86
/***********************************************************************
* save_vm86_context
*
vm86->regs.ss = context->SegSs;
vm86->regs.eflags = context->EFlags;
}
-#endif /* linux */
+#endif /* HAVE_VM86 */
/***********************************************************************
{
fs = SYSLEVEL_Win16CurrentTeb;
}
-#ifdef linux
+#ifdef HAVE_VM86
else if ((void *)EIP_sig(sigcontext) == vm86_return) /* vm86 mode */
{
/* retrieve pointer to vm86plus struct that was stored in vm86_enter */
save_vm86_context( context, vm86 );
return;
}
-#endif /* linux */
+#endif /* HAVE_VM86 */
__set_fs(fs);
*/
static void restore_context( const CONTEXT *context, SIGCONTEXT *sigcontext )
{
-#ifdef linux
+#ifdef HAVE_VM86
/* check if exception occurred in vm86 mode */
if ((void *)EIP_sig(sigcontext) == vm86_return &&
IS_SELECTOR_SYSTEM(CS_sig(sigcontext)))
restore_vm86_context( context, vm86 );
return;
}
-#endif /* linux */
+#endif /* HAVE_VM86 */
EAX_sig(sigcontext) = context->Eax;
EBX_sig(sigcontext) = context->Ebx;
}
+#ifdef HAVE_VM86
/**********************************************************************
* set_vm86_pend
*
EXC_RtlRaiseException( &rec, context );
}
}
-#ifdef linux
else if (teb->vm86_ptr)
{
/* not in VM86, but possibly setting up for it */
}
}
}
-#endif /* linux */
}
+/**********************************************************************
+ * usr2_handler
+ *
+ * Handler for SIGUSR2.
+ * We use it to signal that the running __wine_enter_vm86() should
+ * immediately set VIP_MASK, causing pending events to be handled
+ * as early as possible.
+ */
+static HANDLER_DEF(usr2_handler)
+{
+ CONTEXT context;
+
+ save_context( &context, HANDLER_CONTEXT );
+ set_vm86_pend( &context );
+ restore_context( &context, HANDLER_CONTEXT );
+}
+
+
+/**********************************************************************
+ * alrm_handler
+ *
+ * Handler for SIGALRM.
+ * Increases the alarm counter and sets the vm86 pending flag.
+ */
+static HANDLER_DEF(alrm_handler)
+{
+ CONTEXT context;
+
+ save_context( &context, HANDLER_CONTEXT );
+ NtCurrentTeb()->alarms++;
+ set_vm86_pend( &context );
+ restore_context( &context, HANDLER_CONTEXT );
+}
+#endif /* HAVE_VM86 */
+
+
/**********************************************************************
* segv_handler
*
}
-/**********************************************************************
- * alrm_handler
- *
- * Handler for SIGALRM.
- * Increases the alarm counter and sets the vm86 pending flag.
- */
-static HANDLER_DEF(alrm_handler)
-{
- CONTEXT context;
-
- save_context( &context, HANDLER_CONTEXT );
- NtCurrentTeb()->alarms++;
- set_vm86_pend( &context );
- restore_context( &context, HANDLER_CONTEXT );
-}
-
-
-/**********************************************************************
- * usr2_handler
- *
- * Handler for SIGUSR2.
- * We use it to signal that the running __wine_enter_vm86() should
- * immediately set VIP_MASK, causing pending events to be handled
- * as early as possible.
- */
-static HANDLER_DEF(usr2_handler)
-{
- CONTEXT context;
-
- save_context( &context, HANDLER_CONTEXT );
- set_vm86_pend( &context );
- restore_context( &context, HANDLER_CONTEXT );
-}
-
-
/***********************************************************************
* set_handler
*
#ifdef SIGTRAP
if (set_handler( SIGTRAP, have_sigaltstack, (void (*)())trap_handler ) == -1) goto error;
#endif
+
+#ifdef HAVE_VM86
if (set_handler( SIGALRM, have_sigaltstack, (void (*)())alrm_handler ) == -1) goto error;
if (set_handler( SIGUSR2, have_sigaltstack, (void (*)())usr2_handler ) == -1) goto error;
+#endif
+
return TRUE;
error:
}
-#ifdef linux
+#ifdef HAVE_VM86
/**********************************************************************
* __wine_enter_vm86
*
}
}
-#else /* linux */
+#else /* HAVE_VM86 */
void __wine_enter_vm86( CONTEXT *context )
{
MESSAGE("vm86 mode not supported on this platform\n");
}
-#endif /* linux */
+#endif /* HAVE_VM86 */
/**********************************************************************
* DbgBreakPoint (NTDLL.@)