From ef766337ff08c84827fc8a4db3f42ab8e8cbac38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 19 Feb 2016 15:30:14 +0100 Subject: [PATCH] util: TristateBool and TristateSwitch are interchangeable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It may be useful in some cases to call TristateSwitch helper with TristateBool. Document that enum values equivalency in the code. Signed-off-by: Marc-André Lureau --- src/util/virutil.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/util/virutil.h b/src/util/virutil.h index 535807c4f7..b121de0997 100644 --- a/src/util/virutil.h +++ b/src/util/virutil.h @@ -236,10 +236,15 @@ typedef enum { VIR_TRISTATE_SWITCH_LAST } virTristateSwitch; - VIR_ENUM_DECL(virTristateBool) VIR_ENUM_DECL(virTristateSwitch) +/* the two enums must be in sync to be able to use helpers interchangeably in + * some special cases */ +verify((int)VIR_TRISTATE_BOOL_YES == (int)VIR_TRISTATE_SWITCH_ON); +verify((int)VIR_TRISTATE_BOOL_NO == (int)VIR_TRISTATE_SWITCH_OFF); +verify((int)VIR_TRISTATE_BOOL_ABSENT == (int)VIR_TRISTATE_SWITCH_ABSENT); + unsigned int virGetListenFDs(void); long virGetSystemPageSize(void);