[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/types: Alter typedef for bool_t
commit ac7c6ce7dcc5084ee10e9a1c2ce839c1a92a2271 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Mon Aug 1 11:34:35 2016 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Mon Aug 1 17:46:43 2016 +0100 xen/types: Alter typedef for bool_t As xen/stdbool.h is included, the typedef should use bool rather than _Bool. Suggested-by: Jan Beulich <JBeulich@xxxxxxxx> Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/include/xen/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/xen/types.h b/xen/include/xen/types.h index 78410de..c8092d0 100644 --- a/xen/include/xen/types.h +++ b/xen/include/xen/types.h @@ -61,7 +61,7 @@ typedef __u64 __be64; typedef unsigned long uintptr_t; -typedef _Bool bool_t; +typedef bool bool_t; #define test_and_set_bool(b) xchg(&(b), true) #define test_and_clear_bool(b) xchg(&(b), false) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |