From: Francis Deslauriers Date: Tue, 8 Jun 2021 21:21:30 +0000 (-0400) Subject: action list: missing renames from previous name "group" X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=a8940c5eb1046e84c10bb0cf72c0f2575a8c9e4e action list: missing renames from previous name "group" Signed-off-by: Francis Deslauriers Signed-off-by: Jérémie Galarneau Change-Id: I4373984c2bea96dc67880b1bbb361fb8fbc014ca --- diff --git a/include/lttng/action/action-internal.h b/include/lttng/action/action-internal.h index 55e34163b..0649333f2 100644 --- a/include/lttng/action/action-internal.h +++ b/include/lttng/action/action-internal.h @@ -122,7 +122,7 @@ enum lttng_action_status lttng_action_add_error_query_results( /* * For use by the various lttng_action implementation. Implements the default * behavior to the generic error "execution failure counter" that all actions - * (except group, which passes-through) provide. + * (except list, which passes-through) provide. */ LTTNG_HIDDEN enum lttng_action_status lttng_action_generic_add_error_query_results( diff --git a/include/lttng/action/list-internal.h b/include/lttng/action/list-internal.h index 9e88422ca..4aca7fa27 100644 --- a/include/lttng/action/list-internal.h +++ b/include/lttng/action/list-internal.h @@ -19,15 +19,15 @@ struct lttng_payload_view; * Create an action list from a payload view. * * On success, return the number of bytes consumed from `view`, and the created - * group in `*group`. On failure, return -1. + * list in `*list`. On failure, return -1. */ LTTNG_HIDDEN extern ssize_t lttng_action_list_create_from_payload( struct lttng_payload_view *view, - struct lttng_action **group); + struct lttng_action **list); LTTNG_HIDDEN extern struct lttng_action *lttng_action_list_borrow_mutable_at_index( - const struct lttng_action *group, unsigned int index); + const struct lttng_action *list, unsigned int index); #endif /* LTTNG_ACTION_LIST_INTERNAL_H */ diff --git a/include/lttng/action/list.h b/include/lttng/action/list.h index 888c1237e..f7331f083 100644 --- a/include/lttng/action/list.h +++ b/include/lttng/action/list.h @@ -28,30 +28,30 @@ extern struct lttng_action *lttng_action_list_create(void); * * The action list acquires a reference to the action. The action can be * safely destroyed after calling this function. An action must not be - * modified after adding it to a group. + * modified after adding it to a list. * * Adding an action list to an action list is not supported. */ extern enum lttng_action_status lttng_action_list_add_action( - struct lttng_action *group, struct lttng_action *action); + struct lttng_action *list, struct lttng_action *action); /* * Get the number of actions in an action list. */ extern enum lttng_action_status lttng_action_list_get_count( - const struct lttng_action *group, unsigned int *count); + const struct lttng_action *list, unsigned int *count); /* * Get an action from the action list at a given index. * - * Note that the group maintains the ownership of the returned action. + * Note that the list maintains the ownership of the returned action. * It must not be destroyed by the user, nor should it be held beyond * the lifetime of the action list. * * Returns an action, or NULL on error. */ extern const struct lttng_action *lttng_action_list_get_at_index( - const struct lttng_action *group, + const struct lttng_action *list, unsigned int index); #ifdef __cplusplus diff --git a/src/bin/lttng/commands/add_trigger.c b/src/bin/lttng/commands/add_trigger.c index 5b41ad053..73bb0167c 100644 --- a/src/bin/lttng/commands/add_trigger.c +++ b/src/bin/lttng/commands/add_trigger.c @@ -2278,7 +2278,7 @@ int cmd_add_trigger(int argc, const char **argv) goto error; } - /* Ownership of the action was transferred to the group. */ + /* Ownership of the action was transferred to the list. */ action = NULL; break;