From 72b12636492cdf1c97eb1fec313165720f741cca Mon Sep 17 00:00:00 2001 From: Tim Gore Date: Thu, 24 Jul 2014 14:54:27 +0100 Subject: [PATCH] intel-gpu-tools: add sys/wait.h to pm_rps.c commit 745945546f7366a413a3a51a37f90caa3a227b1d breaks the build under Android because some of the macros used in pm_rps.c are defined in sys/wait.h which is not included. Signed-off-by: Tim Gore Signed-off-by: Daniel Vetter --- tests/pm_rps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pm_rps.c b/tests/pm_rps.c index 8593e364..5264436c 100644 --- a/tests/pm_rps.c +++ b/tests/pm_rps.c @@ -34,6 +34,7 @@ #include #include #include +#include #include "drmtest.h" #include "intel_io.h"