chiark / gitweb /
missing.h: add fake __NR_memfd_create for MIPS
authorDaniel Mack <zonque@gmail.com>
Fri, 22 Aug 2014 13:39:36 +0000 (15:39 +0200)
committerDaniel Mack <zonque@gmail.com>
Fri, 22 Aug 2014 13:41:18 +0000 (15:41 +0200)
We don't have the correct __NR_memfd_create syscall number yet, so set it to
0xffffffff for now to prevent compile time errors.

src/shared/missing.h

index 3ff1a21720835e3cb7993606afa458d07cdbea4a..3051cb5640569126ae7fded8ffb972732c484aa6 100644 (file)
@@ -167,6 +167,9 @@ static inline int pivot_root(const char *new_root, const char *put_old) {
 #      define __NR_fanotify_mark 5296
 #    endif
 #  endif
 #      define __NR_fanotify_mark 5296
 #    endif
 #  endif
+#  ifndef __NR_memfd_create
+#    define __NR_memfd_create 0xffffffff /* FIXME */
+#  endif
 #else
 #  ifndef __NR_fanotify_init
 #    define __NR_fanotify_init 338
 #else
 #  ifndef __NR_fanotify_init
 #    define __NR_fanotify_init 338