Commit e7202687 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Remove support for vm86 mode.

parent 5e0fd340
......@@ -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 \
......
......@@ -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 \
......
......@@ -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)
......
......@@ -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 )
......
......@@ -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.@)
*/
......
......@@ -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.@)
*/
......
......@@ -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")
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment