Bläddra i källkod

x86: signal: move sigframe.h to arch/x86/include/asm

Impact: cleanup, move header file

Move arch/x86/kernel/sigframe.h to arch/x86/include/asm/sigframe.h.
It will be used in arch/x86/ia32/ia32_signal.c.

Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Hiroshi Shimamoto 16 år sedan
förälder
incheckning
41af86fad3
3 ändrade filer med 2 tillägg och 2 borttagningar
  1. 0 0
      arch/x86/include/asm/sigframe.h
  2. 1 1
      arch/x86/kernel/asm-offsets_32.c
  3. 1 1
      arch/x86/kernel/signal.c

+ 0 - 0
arch/x86/kernel/sigframe.h → arch/x86/include/asm/sigframe.h


+ 1 - 1
arch/x86/kernel/asm-offsets_32.c

@@ -11,7 +11,7 @@
 #include <linux/suspend.h>
 #include <linux/kbuild.h>
 #include <asm/ucontext.h>
-#include "sigframe.h"
+#include <asm/sigframe.h>
 #include <asm/pgtable.h>
 #include <asm/fixmap.h>
 #include <asm/processor.h>

+ 1 - 1
arch/x86/kernel/signal.c

@@ -35,7 +35,7 @@
 #include <asm/syscall.h>
 #include <asm/syscalls.h>
 
-#include "sigframe.h"
+#include <asm/sigframe.h>
 
 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))