From: James Cowgill Date: Fri, 12 Aug 2016 15:54:14 +0000 (+0000) Subject: utils: Add mips signalfd syscall numbers X-Git-Tag: lxc-2.1.1~414^2~4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f53b5916521a32e58e48df8ae1fce9c30cea3a99;p=mirror_lxc.git utils: Add mips signalfd syscall numbers Signed-off-by: James Cowgill --- diff --git a/src/lxc/utils.h b/src/lxc/utils.h index b541e07ec..98b4e1374 100644 --- a/src/lxc/utils.h +++ b/src/lxc/utils.h @@ -117,6 +117,12 @@ struct signalfd_siginfo # define __NR_signalfd4 322 # elif __arm__ # define __NR_signalfd4 355 +# elif __mips__ && _MIPS_SIM == _ABIO32 +# define __NR_signalfd4 4324 +# elif __mips__ && _MIPS_SIM == _ABI64 +# define __NR_signalfd4 5283 +# elif __mips__ && _MIPS_SIM == _ABIN32 +# define __NR_signalfd4 6287 # endif #endif @@ -132,6 +138,12 @@ struct signalfd_siginfo # define __NR_signalfd 316 # elif __arm__ # define __NR_signalfd 349 +# elif __mips__ && _MIPS_SIM == _ABIO32 +# define __NR_signalfd 4317 +# elif __mips__ && _MIPS_SIM == _ABI64 +# define __NR_signalfd 5276 +# elif __mips__ && _MIPS_SIM == _ABIN32 +# define __NR_signalfd 6280 # endif #endif