vm86.h (1342635638cba9b7c8eac776da5e54390d14d313) | vm86.h (decd275e62d5eef4b947fab89652fa6afdadf2f2) |
---|---|
1#ifndef _ASM_X86_VM86_H 2#define _ASM_X86_VM86_H 3 4#include <asm/ptrace.h> 5#include <uapi/asm/vm86.h> 6 7/* 8 * This is the (kernel) stack-layout when we have done a "SAVE_ALL" from vm86 --- 16 unchanged lines hidden (view full) --- 25 unsigned short ds, __dsh; 26 unsigned short fs, __fsh; 27 unsigned short gs, __gsh; 28}; 29 30struct vm86 { 31 struct vm86plus_struct __user *user_vm86; 32 struct pt_regs regs32; | 1#ifndef _ASM_X86_VM86_H 2#define _ASM_X86_VM86_H 3 4#include <asm/ptrace.h> 5#include <uapi/asm/vm86.h> 6 7/* 8 * This is the (kernel) stack-layout when we have done a "SAVE_ALL" from vm86 --- 16 unchanged lines hidden (view full) --- 25 unsigned short ds, __dsh; 26 unsigned short fs, __fsh; 27 unsigned short gs, __gsh; 28}; 29 30struct vm86 { 31 struct vm86plus_struct __user *user_vm86; 32 struct pt_regs regs32; |
33 unsigned long v86flags; 34 unsigned long v86mask; | 33 unsigned long veflags; 34 unsigned long veflags_mask; |
35 unsigned long saved_sp0; 36 37 unsigned long flags; 38 unsigned long screen_bitmap; 39 unsigned long cpu_type; 40 struct revectored_struct int_revectored; 41 struct revectored_struct int21_revectored; 42 struct vm86plus_info_struct vm86plus; --- 49 unchanged lines hidden --- | 35 unsigned long saved_sp0; 36 37 unsigned long flags; 38 unsigned long screen_bitmap; 39 unsigned long cpu_type; 40 struct revectored_struct int_revectored; 41 struct revectored_struct int21_revectored; 42 struct vm86plus_info_struct vm86plus; --- 49 unchanged lines hidden --- |