From 465acd2b322f19e9599f73248a00345f76d16c9f Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Thu, 1 Jan 2009 23:20:38 +0000 Subject: [PATCH] 2008-11-13 Kirill A. Shutemov * linux/arm/syscallent.h: Fix build on ARM EABI which does not provide syscalls socketcall and ipc. --- ChangeLog | 5 +++++ linux/arm/syscallent.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 49a543cd..1fa60ba4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-11-13 Kirill A. Shutemov + + * linux/arm/syscallent.h: Fix build on ARM EABI which does not + provide syscalls socketcall and ipc. + 2009-01-01 Andreas Schwab * net.c (sys_accept): Properly decode third argument as pointer to diff --git a/linux/arm/syscallent.h b/linux/arm/syscallent.h index 2b8e91ad..89f6a66d 100644 --- a/linux/arm/syscallent.h +++ b/linux/arm/syscallent.h @@ -431,6 +431,7 @@ { 5, 0, printargs, "SYS_398" }, /* 398 */ { 5, 0, printargs, "SYS_399" }, /* 399 */ +#ifndef __ARM_EABI__ #if SYS_socket_subcall != 400 #error fix me #endif @@ -481,3 +482,4 @@ { 4, TI, sys_shmdt, "shmdt" }, /* 440 */ { 4, TI, sys_shmget, "shmget" }, /* 441 */ { 4, TI, sys_shmctl, "shmctl" }, /* 442 */ +#endif -- 2.40.0