diff options
author | Kevin | 2014-11-15 09:58:27 +0800 |
---|---|---|
committer | Kevin | 2014-11-15 09:58:27 +0800 |
commit | 392e8802486cb573b916e746010e141a75f507e6 (patch) | |
tree | 50029aca02c81f087b90336e670b44e510782330 /ANDROID_3.4.5/arch/um/sys-ia64 | |
download | FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.tar.gz FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.tar.bz2 FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.zip |
init android origin source code
Diffstat (limited to 'ANDROID_3.4.5/arch/um/sys-ia64')
-rw-r--r-- | ANDROID_3.4.5/arch/um/sys-ia64/Makefile | 11 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/um/sys-ia64/sysdep/ptrace.h | 16 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/um/sys-ia64/sysdep/sigcontext.h | 10 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/um/sys-ia64/sysdep/skas_ptrace.h | 22 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/um/sys-ia64/sysdep/syscalls.h | 10 |
5 files changed, 69 insertions, 0 deletions
diff --git a/ANDROID_3.4.5/arch/um/sys-ia64/Makefile b/ANDROID_3.4.5/arch/um/sys-ia64/Makefile new file mode 100644 index 00000000..d02f4c26 --- /dev/null +++ b/ANDROID_3.4.5/arch/um/sys-ia64/Makefile @@ -0,0 +1,11 @@ +OBJ = built-in.o + +OBJS = + +all: $(OBJ) + +$(OBJ): $(OBJS) + rm -f $@ + $(LD) $(LINKFLAGS) --start-group $^ --end-group -o $@ + +clean-files := $(OBJS) link.ld diff --git a/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/ptrace.h b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/ptrace.h new file mode 100644 index 00000000..0f0f4e6f --- /dev/null +++ b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/ptrace.h @@ -0,0 +1,16 @@ +/* + * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) + * Licensed under the GPL + */ + +#ifndef __SYSDEP_IA64_PTRACE_H +#define __SYSDEP_IA64_PTRACE_H + +struct sys_pt_regs { + int foo; +}; + +#define EMPTY_REGS { 0 } + +#endif + diff --git a/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/sigcontext.h b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/sigcontext.h new file mode 100644 index 00000000..76b43161 --- /dev/null +++ b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/sigcontext.h @@ -0,0 +1,10 @@ +/* + * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) + * Licensed under the GPL + */ + +#ifndef __SYSDEP_IA64_SIGCONTEXT_H +#define __SYSDEP_IA64_SIGCONTEXT_H + +#endif + diff --git a/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/skas_ptrace.h b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/skas_ptrace.h new file mode 100644 index 00000000..25a38e71 --- /dev/null +++ b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/skas_ptrace.h @@ -0,0 +1,22 @@ +/* + * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) + * Licensed under the GPL + */ + +#ifndef __SYSDEP_IA64_SKAS_PTRACE_H +#define __SYSDEP_IA64_SKAS_PTRACE_H + +struct ptrace_faultinfo { + int is_write; + unsigned long addr; +}; + +struct ptrace_ldt { + int func; + void *ptr; + unsigned long bytecount; +}; + +#define PTRACE_LDT 54 + +#endif diff --git a/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/syscalls.h b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/syscalls.h new file mode 100644 index 00000000..5f6700c4 --- /dev/null +++ b/ANDROID_3.4.5/arch/um/sys-ia64/sysdep/syscalls.h @@ -0,0 +1,10 @@ +/* + * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) + * Licensed under the GPL + */ + +#ifndef __SYSDEP_IA64_SYSCALLS_H +#define __SYSDEP_IA64_SYSCALLS_H + +#endif + |