X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=plugins%2Futils%2Fmuxer%2Fmuxer.c;h=a148ca41cbff6cf551c1ba491605b76814ee633a;hb=c3acd5f3f82ef06a3d04dc180c901a4597514d13;hp=533ccfaa5f937b4a5341b4b66b8d84b8134caf1d;hpb=fcc2519bd610aab07e929ce4847865ad88d9896c;p=babeltrace.git diff --git a/plugins/utils/muxer/muxer.c b/plugins/utils/muxer/muxer.c index 533ccfaa..a148ca41 100644 --- a/plugins/utils/muxer/muxer.c +++ b/plugins/utils/muxer/muxer.c @@ -43,7 +43,7 @@ #include #include -#define IGNORE_ABSOLUTE_PARAM_NAME "ignore-absolute" +#define ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME "assume-absolute-clock-classes" struct muxer_comp { /* Array of struct bt_private_notification_iterator * (weak refs) */ @@ -225,8 +225,8 @@ struct bt_value *get_default_params(void) goto error; } - ret = bt_value_map_insert_bool(params, IGNORE_ABSOLUTE_PARAM_NAME, - false); + ret = bt_value_map_insert_bool(params, + ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME, false); if (ret) { goto error; } @@ -260,7 +260,7 @@ int configure_muxer_comp(struct muxer_comp *muxer_comp, struct bt_value *params) } ignore_absolute = bt_value_map_get(real_params, - IGNORE_ABSOLUTE_PARAM_NAME); + ASSUME_ABSOLUTE_CLOCK_CLASSES_PARAM_NAME); if (!bt_value_is_bool(ignore_absolute)) { goto error; }