1VM86(2) Linux Programmer's Manual VM86(2)
2
3
4
6 vm86old, vm86 - enter virtual 8086 mode
7
9 #include <sys/vm86.h>
10
11 int vm86old(struct vm86_struct *info);
12 int vm86(unsigned long fn, struct vm86plus_struct *v86);
13
15 The system call vm86() was introduced in Linux 0.97p2. In Linux 2.1.15
16 and 2.0.28, it was renamed to vm86old(), and a new vm86() was intro‐
17 duced. The definition of struct vm86_struct was changed in 1.1.8 and
18 1.1.9.
19
20 These calls cause the process to enter VM86 mode (virtual-8086 in Intel
21 literature), and are used by dosemu.
22
23 VM86 mode is an emulation of real mode within a protected mode task.
24
26 On success, zero is returned. On error, -1 is returned, and errno is
27 set to indicate the error.
28
30 EFAULT This return value is specific to i386 and indicates a problem
31 with getting user-space data.
32
33 ENOSYS This return value indicates the call is not implemented on the
34 present architecture.
35
36 EPERM Saved kernel stack exists. (This is a kernel sanity check; the
37 saved stack should exist only within vm86 mode itself.)
38
40 This call is specific to Linux on 32-bit Intel processors, and should
41 not be used in programs intended to be portable.
42
44 This page is part of release 5.13 of the Linux man-pages project. A
45 description of the project, information about reporting bugs, and the
46 latest version of this page, can be found at
47 https://www.kernel.org/doc/man-pages/.
48
49
50
51Linux 2021-03-22 VM86(2)