[CRIU] [PATCH 1/4] vdso: fix build error
Chanho Park
chanho61.park at samsung.com
Thu May 30 05:18:05 EDT 2013
This patch fixes build error due to lack of bool type. It can be fixed adding
include file.
In file included from arch/arm/vdso-pie.c:3:0:
include/vdso.h:41:1: error: unknown type name ‘bool’
include/vdso.h:93:1: error: unknown type name ‘bool’
Signed-off-by: Chanho Park <chanho61.park at samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham at samsung.com>
---
include/vdso.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/vdso.h b/include/vdso.h
index 3f93b3a..015f564 100644
--- a/include/vdso.h
+++ b/include/vdso.h
@@ -5,6 +5,7 @@
#include "asm/vdso.h"
#include "asm/int.h"
+#include "asm/types.h"
#define VDSO_PROT (PROT_READ | PROT_EXEC)
--
1.7.9.5
More information about the CRIU
mailing list