You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Rebase against 42cb7d2ad1caba08de235e6319b9967296b5d554.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
From 17b12b07aae111f5dde4f4dca3520ab93487b2aa Mon Sep 17 00:00:00 2001
|
||||
From 4b73ac9cedc1531c6ae441c38d0bad37ed29c13f Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
||||
Date: Sun, 19 Mar 2017 19:08:34 +0100
|
||||
Subject: [PATCH] ntdll: Catch windows int 0x2e syscall on i386.
|
||||
@@ -8,15 +8,15 @@ Subject: [PATCH] ntdll: Catch windows int 0x2e syscall on i386.
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/dlls/ntdll/unix/signal_i386.c b/dlls/ntdll/unix/signal_i386.c
|
||||
index 7ae4cda33a6..80fef44d055 100644
|
||||
index 19ba551773a..e30dbf9398e 100644
|
||||
--- a/dlls/ntdll/unix/signal_i386.c
|
||||
+++ b/dlls/ntdll/unix/signal_i386.c
|
||||
@@ -1638,6 +1638,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, st
|
||||
stack->rec.ExceptionInformation[2] = stack->context.Edx;
|
||||
setup_raise_exception( sigcontext, stack );
|
||||
@@ -1584,6 +1584,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, vo
|
||||
rec->ExceptionInformation[2] = context->Edx;
|
||||
setup_raise_exception( sigcontext, stack, rec, context );
|
||||
return TRUE;
|
||||
+ case 0x2e:
|
||||
+ FIXME("unimplemented syscall handler for %#x\n", stack->context.Eax);
|
||||
+ FIXME("unimplemented syscall handler for %#x\n", context->Eax);
|
||||
+ EAX_sig(sigcontext) = STATUS_INVALID_SYSTEM_SERVICE;
|
||||
+ EIP_sig(sigcontext) += 2;
|
||||
+ return TRUE;
|
||||
@@ -24,5 +24,5 @@ index 7ae4cda33a6..80fef44d055 100644
|
||||
return FALSE;
|
||||
}
|
||||
--
|
||||
2.26.2
|
||||
2.27.0
|
||||
|
||||
|
Reference in New Issue
Block a user