From 85abcdf6392879383e0b175e0c247119f083e095 Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Sun, 16 Mar 2014 17:32:34 +0100 Subject: [PATCH] Use kernel 3.13 syscall tables for MIPS32 Signed-off-by: Lars Persson Signed-off-by: Mathieu Desnoyers --- instrumentation/syscalls/headers/syscalls_integers.h | 4 ++++ instrumentation/syscalls/headers/syscalls_pointers.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/instrumentation/syscalls/headers/syscalls_integers.h b/instrumentation/syscalls/headers/syscalls_integers.h index ce0409fc..2992439f 100644 --- a/instrumentation/syscalls/headers/syscalls_integers.h +++ b/instrumentation/syscalls/headers/syscalls_integers.h @@ -13,3 +13,7 @@ #ifdef CONFIG_PPC #include "powerpc-32-syscalls-3.0.34_integers.h" #endif + +#ifdef CONFIG_CPU_MIPS32 +#include "mips-32-syscalls-3.13.0_integers.h" +#endif diff --git a/instrumentation/syscalls/headers/syscalls_pointers.h b/instrumentation/syscalls/headers/syscalls_pointers.h index f5ca5668..9fde85a5 100644 --- a/instrumentation/syscalls/headers/syscalls_pointers.h +++ b/instrumentation/syscalls/headers/syscalls_pointers.h @@ -13,3 +13,7 @@ #ifdef CONFIG_PPC #include "powerpc-32-syscalls-3.0.34_pointers.h" #endif + +#ifdef CONFIG_CPU_MIPS32 +#include "mips-32-syscalls-3.13.0_pointers.h" +#endif -- 2.34.1