X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Foptional.h;h=ca7d1f043d21bdef1b9ad8dc716452ee49fe7858;hp=0d99fe3224f4e419679d22627a0f4899f0c2a9d2;hb=2463b7879c00298daa79744cdaae82ac061a4ed8;hpb=3da864a94ccc39239fea82c4803b58b6b56a1003 diff --git a/src/common/optional.h b/src/common/optional.h index 0d99fe322..ca7d1f043 100644 --- a/src/common/optional.h +++ b/src/common/optional.h @@ -62,7 +62,7 @@ * wrapped optional types. It is meant to be used with PODs. */ #define LTTNG_OPTIONAL_GET(optional) \ - ({ \ + ({ \ assert((optional).is_set); \ (optional).value; \ }) @@ -79,12 +79,17 @@ }) /* - * Initialize an optional field. + * Initialize an optional field as unset. * * The wrapped field is set to the value it would gave if it had static storage * duration. */ -#define LTTNG_OPTIONAL_INIT { .is_set = 0 } +#define LTTNG_OPTIONAL_INIT_UNSET { .is_set = 0 } + +/* + * Initialize an optional field as 'set' with a given value. + */ +#define LTTNG_OPTIONAL_INIT_VALUE(val) { .value = val, .is_set = 1 } /* Set the value of an optional field. */ #define LTTNG_OPTIONAL_SET(field_ptr, val) \