summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h')
-rw-r--r--ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h b/ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h
deleted file mode 100644
index eaea1d31..00000000
--- a/ANDROID_3.4.5/arch/x86/include/asm/vsyscall.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef _ASM_X86_VSYSCALL_H
-#define _ASM_X86_VSYSCALL_H
-
-enum vsyscall_num {
- __NR_vgettimeofday,
- __NR_vtime,
- __NR_vgetcpu,
-};
-
-#define VSYSCALL_START (-10UL << 20)
-#define VSYSCALL_SIZE 1024
-#define VSYSCALL_END (-2UL << 20)
-#define VSYSCALL_MAPPED_PAGES 1
-#define VSYSCALL_ADDR(vsyscall_nr) (VSYSCALL_START+VSYSCALL_SIZE*(vsyscall_nr))
-
-#ifdef __KERNEL__
-#include <linux/seqlock.h>
-
-#define VGETCPU_RDTSCP 1
-#define VGETCPU_LSL 2
-
-/* kernel space (writeable) */
-extern int vgetcpu_mode;
-extern struct timezone sys_tz;
-
-#include <asm/vvar.h>
-
-extern void map_vsyscall(void);
-
-/*
- * Called on instruction fetch fault in vsyscall page.
- * Returns true if handled.
- */
-extern bool emulate_vsyscall(struct pt_regs *regs, unsigned long address);
-
-#endif /* __KERNEL__ */
-
-#endif /* _ASM_X86_VSYSCALL_H */