diff options
author | Richard Kuo <rkuo@codeaurora.org> | 2013-02-19 19:19:50 -0600 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2013-04-30 19:40:26 -0500 |
commit | c05c3ec401a68888f23f489b7bd6f88117836bc9 (patch) | |
tree | ec43a29e1b92adcd5ea51a7a47a3fb6ddf78d638 /arch/hexagon | |
parent | 820927768711b3c5c1f4aa7408433ff6ad37fd56 (diff) | |
download | op-kernel-dev-c05c3ec401a68888f23f489b7bd6f88117836bc9.zip op-kernel-dev-c05c3ec401a68888f23f489b7bd6f88117836bc9.tar.gz |
Hexagon: use generic sys_fork, sys_vfork, and sys_clone
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon')
-rw-r--r-- | arch/hexagon/Kconfig | 2 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/unistd.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/hexagon/Kconfig b/arch/hexagon/Kconfig index b059d8c..9b94b0f 100644 --- a/arch/hexagon/Kconfig +++ b/arch/hexagon/Kconfig @@ -30,6 +30,8 @@ config HEXAGON select GENERIC_CLOCKEVENTS_BROADCAST select MODULES_USE_ELF_RELA select GENERIC_CPU_DEVICES + select GENERIC_KERNEL_THREAD + select GENERIC_KERNEL_EXECVE ---help--- Qualcomm Hexagon is a processor architecture designed for high performance and low power across a wide variety of applications. diff --git a/arch/hexagon/include/uapi/asm/unistd.h b/arch/hexagon/include/uapi/asm/unistd.h index 4a87cc4..ffee405d 100644 --- a/arch/hexagon/include/uapi/asm/unistd.h +++ b/arch/hexagon/include/uapi/asm/unistd.h @@ -27,6 +27,9 @@ */ #define sys_mmap2 sys_mmap_pgoff +#define __ARCH_WANT_SYS_EXECVE #define __ARCH_WANT_SYS_CLONE +#define __ARCH_WANT_SYS_VFORK +#define __ARCH_WANT_SYS_FORK #include <asm-generic/unistd.h> |