aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTapani Pälli <[email protected]>2019-08-20 08:59:23 +0300
committerTapani Pälli <[email protected]>2019-08-22 08:27:43 +0300
commitce8fd042a5b0130cc5c62981828b122127711712 (patch)
tree1e4808fa4d4a5674880ac6554a0eefdfd2cdaef9 /src
parentac5bda374abd9a125c4b5e04e2a0e3a6f0584933 (diff)
util: fix os_create_anonymous_file on android
Commit fixes current crashes with Vulkan applications on Android. Fixes: c0376a123418 "util: add anon_file.h for all memfd/temp file usage" Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/util/anon_file.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util/anon_file.c b/src/util/anon_file.c
index 2780c74a680..e36800482fc 100644
--- a/src/util/anon_file.c
+++ b/src/util/anon_file.c
@@ -36,15 +36,16 @@
#ifdef __FreeBSD__
#include <sys/mman.h>
-#elif defined(HAVE_MEMFD_CREATE)
+#elif defined(HAVE_MEMFD_CREATE) || defined(ANDROID)
#include <sys/syscall.h>
#include <linux/memfd.h>
+#include <stdlib.h>
#else
#include <stdio.h>
#include <stdlib.h>
#endif
-#if !(defined(__FreeBSD__) || defined(HAVE_MEMFD_CREATE) || defined(HAVE_MKOSTEMP))
+#if !(defined(__FreeBSD__) || defined(HAVE_MEMFD_CREATE) || defined(HAVE_MKOSTEMP) || defined(ANDROID))
static int
set_cloexec_or_close(int fd)
{
@@ -68,7 +69,7 @@ err:
}
#endif
-#if !(defined(__FreeBSD__) || defined(HAVE_MEMFD_CREATE))
+#if !(defined(__FreeBSD__) || defined(HAVE_MEMFD_CREATE) || defined(ANDROID))
static int
create_tmpfile_cloexec(char *tmpname)
{
@@ -118,7 +119,7 @@ os_create_anonymous_file(off_t size, const char *debug_name)
#ifdef __FreeBSD__
(void*)debug_name;
fd = shm_open(SHM_ANON, O_CREAT | O_RDWR | O_CLOEXEC, 0600);
-#elif defined(HAVE_MEMFD_CREATE)
+#elif defined(HAVE_MEMFD_CREATE) || defined(ANDROID)
if (!debug_name)
debug_name = "mesa-shared";
fd = syscall(SYS_memfd_create, debug_name, MFD_CLOEXEC);