123456789101112131415161718192021222324252627 |
- From f5da8d0c38ea0eb660cb17de7aa62cda6899eb75 Mon Sep 17 00:00:00 2001
- From: ldv <ldv>
- Date: Thu, 1 Jan 2009 23:20:38 +0000
- Subject: [PATCH] 2008-11-13 Kirill A. Shutemov <kirill@shutemov.name>
- * linux/arm/syscallent.h: Fix build on ARM EABI which does not
- provide syscalls socketcall and ipc.
- diff --git a/linux/arm/syscallent.h b/linux/arm/syscallent.h
- index 5ccef2f..edc3641 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
- --
- 1.6.1.3
|