From mboxrd@z Thu Jan 1 00:00:00 1970 From: jp_ikaheimonen@mentor.com (JP Ikaheimonen) Date: Thu, 7 Nov 2013 12:21:34 +0200 Subject: [lttng-dev] [PATCH lttng-tools 10/28] Add new error codes for exclusion processing Message-ID: <1383819703-6793-1-git-send-email-jp_ikaheimonen@mentor.com> Add new error codes LTTNG_ERR_EXCLUSION_INVAL and LTTNG_ERR_EXCLUSION_NOMEM Signed-off-by: JP Ikaheimonen --- include/lttng/lttng-error.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/lttng/lttng-error.h b/include/lttng/lttng-error.h index 7631dbc..f752fc4 100644 --- a/include/lttng/lttng-error.h +++ b/include/lttng/lttng-error.h @@ -140,6 +140,8 @@ enum lttng_error_code { LTTNG_ERR_FILTER_NOMEM = 107, /* Lack of memory for filter bytecode */ LTTNG_ERR_FILTER_EXIST = 108, /* Filter already exist */ LTTNG_ERR_NO_CONSUMER = 109, /* No consumer exist for the session */ + LTTNG_ERR_EXCLUSION_INVAL = 110, /* Invalid event exclusion data */ + LTTNG_ERR_EXCLUSION_NOMEM = 111, /* Lack of memory while processing event exclusions */ /* MUST be last element */ LTTNG_ERR_NR, /* Last element */ -- 1.8.1.2