summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/os/os_process.c
diff options
context:
space:
mode:
authorRob Herring <[email protected]>2017-06-28 17:52:28 -0400
committerEmil Velikov <[email protected]>2017-06-30 08:44:19 +0100
commitcceb2d5c4164bae609c2fdb84adde56305a3decb (patch)
tree0ef19bc7338b726afb2eb44e05b72486dc428f24 /src/gallium/auxiliary/os/os_process.c
parent2ecdedb8d4adfa9dbef053681fc89f2a2873647e (diff)
gallium: os_process fixes for Android
The function getprogname() is available on Android, since it reuses various BSD solutions C runtime. Signed-off-by: Rob Herring <[email protected]> Reviewed-by: Tapani Pälli <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os/os_process.c')
-rw-r--r--src/gallium/auxiliary/os/os_process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/os/os_process.c b/src/gallium/auxiliary/os/os_process.c
index 6622b9b2bc0..035bd228e76 100644
--- a/src/gallium/auxiliary/os/os_process.c
+++ b/src/gallium/auxiliary/os/os_process.c
@@ -34,7 +34,7 @@
# include <windows.h>
#elif defined(__GLIBC__) || defined(__CYGWIN__)
# include <errno.h>
-#elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE)
+#elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE) || defined(PIPE_OS_ANDROID)
# include <stdlib.h>
#elif defined(PIPE_OS_HAIKU)
# include <kernel/OS.h>
@@ -86,7 +86,7 @@ os_get_process_name(char *procname, size_t size)
#elif defined(__GLIBC__) || defined(__CYGWIN__)
name = program_invocation_short_name;
-#elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE)
+#elif defined(PIPE_OS_BSD) || defined(PIPE_OS_APPLE) || defined(PIPE_OS_ANDROID)
/* *BSD and OS X */
name = getprogname();
#elif defined(PIPE_OS_HAIKU)