Add missing include for ssize_t on Cygwin
[lttng-tools.git] / include / lttng / condition / evaluation.h
index 987fce32bda9af0c8c1bbdf0c096d47cfb2caf61..6cd0e1899d4dcb032395557487ffc0b83bdad7a3 100644 (file)
@@ -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
This page took 0.023149 seconds and 4 git commands to generate.