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 ab94abb14f74fe863ae40dafc7a8301db22792fc.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
From 4b73ac9cedc1531c6ae441c38d0bad37ed29c13f Mon Sep 17 00:00:00 2001
|
||||
From a35e75bfe3a6358885e756396c8597d7b60be6e5 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,12 +8,12 @@ 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 19ba551773a..e30dbf9398e 100644
|
||||
index 60a47d53ba8..5cc92ab0ced 100644
|
||||
--- a/dlls/ntdll/unix/signal_i386.c
|
||||
+++ b/dlls/ntdll/unix/signal_i386.c
|
||||
@@ -1584,6 +1584,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, vo
|
||||
@@ -1749,6 +1749,11 @@ static BOOL handle_interrupt( unsigned int interrupt, ucontext_t *sigcontext, vo
|
||||
rec->ExceptionInformation[2] = context->Edx;
|
||||
setup_raise_exception( sigcontext, stack, rec, context );
|
||||
setup_raise_exception( sigcontext, stack, rec, xcontext );
|
||||
return TRUE;
|
||||
+ case 0x2e:
|
||||
+ FIXME("unimplemented syscall handler for %#x\n", context->Eax);
|
||||
@@ -24,5 +24,5 @@ index 19ba551773a..e30dbf9398e 100644
|
||||
return FALSE;
|
||||
}
|
||||
--
|
||||
2.27.0
|
||||
2.28.0
|
||||
|
||||
|
Reference in New Issue
Block a user