From 871480933a1c28f8a9fed4c4d34d06c439a7a422 Mon Sep 17 00:00:00 2001 From: Srikant Patnaik Date: Sun, 11 Jan 2015 12:28:04 +0530 Subject: Moved, renamed, and deleted files The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure. --- .../arch/parisc/include/asm/rt_sigframe.h | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 ANDROID_3.4.5/arch/parisc/include/asm/rt_sigframe.h (limited to 'ANDROID_3.4.5/arch/parisc/include/asm/rt_sigframe.h') diff --git a/ANDROID_3.4.5/arch/parisc/include/asm/rt_sigframe.h b/ANDROID_3.4.5/arch/parisc/include/asm/rt_sigframe.h deleted file mode 100644 index f0dd3b30..00000000 --- a/ANDROID_3.4.5/arch/parisc/include/asm/rt_sigframe.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef _ASM_PARISC_RT_SIGFRAME_H -#define _ASM_PARISC_RT_SIGFRAME_H - -#define SIGRETURN_TRAMP 4 -#define SIGRESTARTBLOCK_TRAMP 5 -#define TRAMP_SIZE (SIGRETURN_TRAMP + SIGRESTARTBLOCK_TRAMP) - -struct rt_sigframe { - /* XXX: Must match trampoline size in arch/parisc/kernel/signal.c - Secondary to that it must protect the ERESTART_RESTARTBLOCK - trampoline we left on the stack (we were bad and didn't - change sp so we could run really fast.) */ - unsigned int tramp[TRAMP_SIZE]; - struct siginfo info; - struct ucontext uc; -}; - -#define SIGFRAME 128 -#define FUNCTIONCALLFRAME 96 -#define PARISC_RT_SIGFRAME_SIZE \ - (((sizeof(struct rt_sigframe) + FUNCTIONCALLFRAME) + SIGFRAME) & -SIGFRAME) - -#endif -- cgit