X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Flttng%2Fcondition%2Fevaluation.h;h=6cd0e1899d4dcb032395557487ffc0b83bdad7a3;hb=87597c2c3bbaa1502ad2025cbf16704829f3b464;hp=987fce32bda9af0c8c1bbdf0c096d47cfb2caf61;hpb=a58c490f0bff52a73717d31d04d1472629180de2;p=lttng-tools.git diff --git a/include/lttng/condition/evaluation.h b/include/lttng/condition/evaluation.h index 987fce32b..6cd0e1899 100644 --- a/include/lttng/condition/evaluation.h +++ b/include/lttng/condition/evaluation.h @@ -30,13 +30,22 @@ enum lttng_evaluation_status { LTTNG_EVALUATION_STATUS_OK = 0, LTTNG_EVALUATION_STATUS_ERROR = -1, LTTNG_EVALUATION_STATUS_INVALID = -2, - LTTNG_EVALUATION_STATUS_UNKNOWN = -2, - LTTNG_EVALUATION_STATUS_UNSET = -3, + LTTNG_EVALUATION_STATUS_UNKNOWN = -3, + LTTNG_EVALUATION_STATUS_UNSET = -4, }; +/* + * Get the condition type associated with an evaluation. + * + * Returns the type of a condition on success, LTTNG_CONDITION_TYPE_UNKNOWN on + * error. + */ extern enum lttng_condition_type lttng_evaluation_get_type( const struct lttng_evaluation *evaluation); +/* + * Destroy (frees) an evaluation object. + */ extern void lttng_evaluation_destroy(struct lttng_evaluation *evaluation); #ifdef __cplusplus