[gtk+] wayland: __NR_memfd_create instead of SYS_memfd_create



commit 05f0e9a5c2390a1e6d86ab171845bdaf32f6cb2c
Author: Ray Strode <rstrode redhat com>
Date:   Mon Jan 25 13:55:25 2016 -0500

    wayland: __NR_memfd_create instead of SYS_memfd_create
    
    It looks like the gnome-continuous headers haven't quite
    caught up yet, so try __NR_memfd_create instead.
    
    If that doesn't work, i'll likely just add in a fallback
    code path.

 gdk/wayland/gdkdisplay-wayland.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gdk/wayland/gdkdisplay-wayland.c b/gdk/wayland/gdkdisplay-wayland.c
index 360c489..f200800 100644
--- a/gdk/wayland/gdkdisplay-wayland.c
+++ b/gdk/wayland/gdkdisplay-wayland.c
@@ -934,7 +934,7 @@ create_shm_pool (struct wl_shm  *shm,
   int ret, fd;
   void *data;
 
-  ret = syscall (SYS_memfd_create, "gdk-wayland", MFD_CLOEXEC);
+  ret = syscall (__NR_memfd_create, "gdk-wayland", MFD_CLOEXEC);
 
   if (ret < 0)
     {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]