diff options
Diffstat (limited to 'src/shared/missing.h')
-rw-r--r-- | src/shared/missing.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/shared/missing.h b/src/shared/missing.h index 1a31066032..f58a609c7d 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -208,14 +208,26 @@ static inline pid_t gettid(void) { #define MAX_HANDLE_SZ 128 #endif -#ifdef __x86_64__ +#if defined __x86_64__ # ifndef __NR_name_to_handle_at # define __NR_name_to_handle_at 303 # endif -#else +#elif defined __i386__ # ifndef __NR_name_to_handle_at # define __NR_name_to_handle_at 341 # endif +#elif defined __arm__ +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 370 +# endif +#elif defined __powerpc__ +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 345 +# endif +#else +# ifndef __NR_name_to_handle_at +# error __NR_name_to_handle_at is not defined +# endif #endif #if !HAVE_DECL_NAME_TO_HANDLE_AT |