[lttng-dev] [BABELTRACE PATCH] API cleanup name get_timestamp and get_cycles

Mathieu Desnoyers mathieu.desnoyers at efficios.com
Tue Aug 7 11:50:14 EDT 2012


* Julien Desfossez (jdesfossez at efficios.com) wrote:
> Rename bt_ctf_get_cycles_timestamp to bt_ctf_get_cycles,
> and bt_ctf_get_real_timestamp to bt_ctf_get_timestamp.

merged, thanks!

Mathieu

> 
> Signed-off-by: Julien Desfossez <jdesfossez at efficios.com>
> ---
>  formats/ctf/events.c            |    4 ++--
>  include/babeltrace/ctf/events.h |    8 ++++----
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/formats/ctf/events.c b/formats/ctf/events.c
> index 06419a1..9693413 100644
> --- a/formats/ctf/events.c
> +++ b/formats/ctf/events.c
> @@ -281,7 +281,7 @@ int bt_ctf_event_get_handle_id(const struct bt_ctf_event *ctf_event)
>  	return ret;
>  }
>  
> -uint64_t bt_ctf_get_real_timestamp(const struct bt_ctf_event *ctf_event)
> +uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *ctf_event)
>  {
>  	struct ctf_event_definition *event = ctf_event->parent;
>  	if (event && event->stream->has_timestamp)
> @@ -290,7 +290,7 @@ uint64_t bt_ctf_get_real_timestamp(const struct bt_ctf_event *ctf_event)
>  		return -1ULL;
>  }
>  
> -uint64_t bt_ctf_get_cycles_timestamp(const struct bt_ctf_event *ctf_event)
> +uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *ctf_event)
>  {
>  	struct ctf_event_definition *event = ctf_event->parent;
>  	if (event && event->stream->has_timestamp)
> diff --git a/include/babeltrace/ctf/events.h b/include/babeltrace/ctf/events.h
> index 419c4c8..4232feb 100644
> --- a/include/babeltrace/ctf/events.h
> +++ b/include/babeltrace/ctf/events.h
> @@ -90,16 +90,16 @@ const struct definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event *e
>  const char *bt_ctf_event_name(const struct bt_ctf_event *event);
>  
>  /*
> - * bt_ctf_get_cycles_timestamp: returns the timestamp of the event as written
> + * bt_ctf_get_cycles: returns the timestamp of the event as written
>   * in the packet (in cycles) or -1ULL on error.
>   */
> -uint64_t bt_ctf_get_cycles_timestamp(const struct bt_ctf_event *event);
> +uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *event);
>  
>  /*
> - * bt_ctf_get_real_timestamp: returns the timestamp of the event offsetted
> + * bt_ctf_get_timestamp: returns the timestamp of the event offsetted
>   * with the system clock source (in ns) or -1ULL on error
>   */
> -uint64_t bt_ctf_get_real_timestamp(const struct bt_ctf_event *event);
> +uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *event);
>  
>  /*
>   * bt_ctf_get_field_list: set list pointer to an array of definition
> -- 
> 1.7.10.4
> 

-- 
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com



More information about the lttng-dev mailing list