This change sanitizes the x86-specific platform headers and libraries. It does two things: - Remove the stuff under android-3/arch-x86 - Update the content of android-9/arch-x86 from a recent AOSP full_x86-eng build (see caveats below). Some files appear to move because they didn't change (e.g. kernel headers). This change was generated by following these steps: 1/ Build full_x86-eng from the AOSP tree 2/ From $ANDROID_ROOT/ndk, run: build/tools/dev-system-import.sh --direct --arch=x86 9 3/ Under $ANDROID_ROOT/development/ndk, do: git rm -r android-3/arch-x86 git add android-9/arch-x86 git checkout -- android-9/include git ls-files -o | xargs rm git commit IMPORTANT: The AOSP tip-of-tree used to generate these files includes post-Gingerbread changes !! The final version of the android-9/arch-x86 files will have to be generated from the gingerbread branch after we back-port all x86-support changes to it. These binaries are thus not final, but can be used to generate working experimental NDK packages, including prebuilt GNU libstdc++ and STLport binaries that implement -fstack-protector correctly. Change-Id: I260896185a098b9b356bd26f492692e4a4f66f8f
114 lines
2.6 KiB
C
114 lines
2.6 KiB
C
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef _LINUX_VM86_H
|
|
#define _LINUX_VM86_H
|
|
|
|
#define TF_MASK 0x00000100
|
|
#define IF_MASK 0x00000200
|
|
#define IOPL_MASK 0x00003000
|
|
#define NT_MASK 0x00004000
|
|
#define VM_MASK 0
|
|
#define AC_MASK 0x00040000
|
|
#define VIF_MASK 0x00080000
|
|
#define VIP_MASK 0x00100000
|
|
#define ID_MASK 0x00200000
|
|
|
|
#define BIOSSEG 0x0f000
|
|
|
|
#define CPU_086 0
|
|
#define CPU_186 1
|
|
#define CPU_286 2
|
|
#define CPU_386 3
|
|
#define CPU_486 4
|
|
#define CPU_586 5
|
|
|
|
#define VM86_TYPE(retval) ((retval) & 0xff)
|
|
#define VM86_ARG(retval) ((retval) >> 8)
|
|
|
|
#define VM86_SIGNAL 0
|
|
#define VM86_UNKNOWN 1
|
|
#define VM86_INTx 2
|
|
#define VM86_STI 3
|
|
|
|
#define VM86_PICRETURN 4
|
|
#define VM86_TRAP 6
|
|
|
|
#define VM86_PLUS_INSTALL_CHECK 0
|
|
#define VM86_ENTER 1
|
|
#define VM86_ENTER_NO_BYPASS 2
|
|
#define VM86_REQUEST_IRQ 3
|
|
#define VM86_FREE_IRQ 4
|
|
#define VM86_GET_IRQ_BITS 5
|
|
#define VM86_GET_AND_RESET_IRQ 6
|
|
|
|
struct vm86_regs {
|
|
|
|
long ebx;
|
|
long ecx;
|
|
long edx;
|
|
long esi;
|
|
long edi;
|
|
long ebp;
|
|
long eax;
|
|
long __null_ds;
|
|
long __null_es;
|
|
long __null_fs;
|
|
long __null_gs;
|
|
long orig_eax;
|
|
long eip;
|
|
unsigned short cs, __csh;
|
|
long eflags;
|
|
long esp;
|
|
unsigned short ss, __ssh;
|
|
|
|
unsigned short es, __esh;
|
|
unsigned short ds, __dsh;
|
|
unsigned short fs, __fsh;
|
|
unsigned short gs, __gsh;
|
|
};
|
|
|
|
struct revectored_struct {
|
|
unsigned long __map[8];
|
|
};
|
|
|
|
struct vm86_struct {
|
|
struct vm86_regs regs;
|
|
unsigned long flags;
|
|
unsigned long screen_bitmap;
|
|
unsigned long cpu_type;
|
|
struct revectored_struct int_revectored;
|
|
struct revectored_struct int21_revectored;
|
|
};
|
|
|
|
#define VM86_SCREEN_BITMAP 0x0001
|
|
|
|
struct vm86plus_info_struct {
|
|
unsigned long force_return_for_pic:1;
|
|
unsigned long vm86dbg_active:1;
|
|
unsigned long vm86dbg_TFpendig:1;
|
|
unsigned long unused:28;
|
|
unsigned long is_vm86pus:1;
|
|
unsigned char vm86dbg_intxxtab[32];
|
|
};
|
|
|
|
struct vm86plus_struct {
|
|
struct vm86_regs regs;
|
|
unsigned long flags;
|
|
unsigned long screen_bitmap;
|
|
unsigned long cpu_type;
|
|
struct revectored_struct int_revectored;
|
|
struct revectored_struct int21_revectored;
|
|
struct vm86plus_info_struct vm86plus;
|
|
};
|
|
|
|
#endif
|