Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e7202687
Commit
e7202687
authored
Feb 01, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove support for vm86 mode.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5e0fd340
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
41 deletions
+0
-41
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+0
-3
signal_arm.c
dlls/ntdll/signal_arm.c
+0
-9
signal_arm64.c
dlls/ntdll/signal_arm64.c
+0
-8
signal_i386.c
dlls/ntdll/signal_i386.c
+0
-0
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+0
-8
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+0
-8
config.h.in
include/config.h.in
+0
-3
No files found.
configure
View file @
e7202687
...
...
@@ -7069,7 +7069,6 @@ for ac_header in \
sys/uio.h
\
sys/user.h
\
sys/utsname.h
\
sys/vm86.h
\
sys/vnode.h
\
sys/wait.h
\
syscall.h
\
...
...
configure.ac
View file @
e7202687
...
...
@@ -532,7 +532,6 @@ AC_CHECK_HEADERS(\
sys/uio.h \
sys/user.h \
sys/utsname.h \
sys/vm86.h \
sys/vnode.h \
sys/wait.h \
syscall.h \
...
...
dlls/ntdll/ntdll.spec
View file @
e7202687
...
...
@@ -1471,9 +1471,6 @@
# All functions must be prefixed with '__wine_' (for internal functions)
# or 'wine_' (for user-visible functions) to avoid namespace conflicts.
# Relays
@ cdecl -i386 __wine_enter_vm86(ptr)
# Server interface
@ cdecl -norelay wine_server_call(ptr)
@ cdecl wine_server_fd_to_handle(long long long ptr)
...
...
dlls/ntdll/signal_arm.c
View file @
e7202687
...
...
@@ -1026,15 +1026,6 @@ void signal_init_process(void)
/**********************************************************************
* __wine_enter_vm86 (NTDLL.@)
*/
void
__wine_enter_vm86
(
CONTEXT
*
context
)
{
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
}
/**********************************************************************
* RtlAddFunctionTable (NTDLL.@)
*/
BOOLEAN
CDECL
RtlAddFunctionTable
(
RUNTIME_FUNCTION
*
table
,
DWORD
count
,
DWORD
addr
)
...
...
dlls/ntdll/signal_arm64.c
View file @
e7202687
...
...
@@ -924,14 +924,6 @@ void signal_init_process(void)
}
/**********************************************************************
* __wine_enter_vm86 (NTDLL.@)
*/
void
__wine_enter_vm86
(
CONTEXT
*
context
)
{
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
}
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
...
...
dlls/ntdll/signal_i386.c
View file @
e7202687
This diff is collapsed.
Click to expand it.
dlls/ntdll/signal_powerpc.c
View file @
e7202687
...
...
@@ -1086,14 +1086,6 @@ void signal_init_process(void)
}
/**********************************************************************
* __wine_enter_vm86 (NTDLL.@)
*/
void
__wine_enter_vm86
(
CONTEXT
*
context
)
{
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
}
/***********************************************************************
* RtlUnwind (NTDLL.@)
*/
...
...
dlls/ntdll/signal_x86_64.c
View file @
e7202687
...
...
@@ -4219,14 +4219,6 @@ void signal_exit_process( int status )
}
/**********************************************************************
* __wine_enter_vm86 (NTDLL.@)
*/
void
__wine_enter_vm86
(
CONTEXT
*
context
)
{
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
}
/**********************************************************************
* DbgBreakPoint (NTDLL.@)
*/
__ASM_STDCALL_FUNC
(
DbgBreakPoint
,
0
,
"int $3; ret"
)
...
...
include/config.h.in
View file @
e7202687
...
...
@@ -1230,9 +1230,6 @@
/* Define to 1 if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
/* Define to 1 if you have the <sys/vm86.h> header file. */
#undef HAVE_SYS_VM86_H
/* Define to 1 if you have the <sys/vnode.h> header file. */
#undef HAVE_SYS_VNODE_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment