Packet API: use status
[babeltrace.git] / lib / trace-ir / stream-class.c
index 763f81abeeeca4017aedc9ea2b7e50d3910541bf..f8dd5999ee9a059c8659fd151eaeab2dfcc1f10a 100644 (file)
@@ -1,8 +1,7 @@
 /*
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  * in the Software without restriction, including without limitation the rights
@@ -36,7 +35,6 @@
 #include <babeltrace/trace-ir/utils-internal.h>
 #include <babeltrace/trace-ir/field-wrapper-internal.h>
 #include <babeltrace/trace-ir/resolve-field-path-internal.h>
-#include <babeltrace/object.h>
 #include <babeltrace/compiler-internal.h>
 #include <babeltrace/align-internal.h>
 #include <babeltrace/endian-internal.h>
@@ -552,14 +550,14 @@ void bt_stream_class_set_packets_have_packet_counter_snapshot(
                "%!+S", stream_class);
 }
 
-bt_bool bt_stream_class_packets_have_default_beginning_clock_value(
+bt_bool bt_stream_class_packets_have_default_beginning_clock_snapshot(
                const struct bt_stream_class *stream_class)
 {
        BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_default_beginning_cv;
+       return (bt_bool) stream_class->packets_have_default_beginning_cs;
 }
 
-void bt_stream_class_set_packets_have_default_beginning_clock_value(
+void bt_stream_class_set_packets_have_default_beginning_clock_snapshot(
                struct bt_stream_class *stream_class,
                bt_bool value)
 {
@@ -568,20 +566,20 @@ void bt_stream_class_set_packets_have_default_beginning_clock_value(
        BT_ASSERT_PRE(!value || stream_class->default_clock_class,
                "Stream class does not have a default clock class: %!+S",
                stream_class);
-       stream_class->packets_have_default_beginning_cv = (bool) value;
+       stream_class->packets_have_default_beginning_cs = (bool) value;
        BT_LIB_LOGV("Set stream class's "
-               "\"packets have default beginning clock value\" property: "
+               "\"packets have default beginning clock snapshot\" property: "
                "%!+S", stream_class);
 }
 
-bt_bool bt_stream_class_packets_have_default_end_clock_value(
+bt_bool bt_stream_class_packets_have_default_end_clock_snapshot(
                const struct bt_stream_class *stream_class)
 {
        BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
-       return (bt_bool) stream_class->packets_have_default_end_cv;
+       return (bt_bool) stream_class->packets_have_default_end_cs;
 }
 
-void bt_stream_class_set_packets_have_default_end_clock_value(
+void bt_stream_class_set_packets_have_default_end_clock_snapshot(
                struct bt_stream_class *stream_class,
                bt_bool value)
 {
@@ -590,15 +588,25 @@ void bt_stream_class_set_packets_have_default_end_clock_value(
        BT_ASSERT_PRE(!value || stream_class->default_clock_class,
                "Stream class does not have a default clock class: %!+S",
                stream_class);
-       stream_class->packets_have_default_end_cv = (bool) value;
+       stream_class->packets_have_default_end_cs = (bool) value;
        BT_LIB_LOGV("Set stream class's "
-               "\"packets have default end clock value\" property: "
+               "\"packets have default end clock snapshot\" property: "
                "%!+S", stream_class);
 }
 
 bt_bool bt_stream_class_default_clock_is_always_known(
                const struct bt_stream_class *stream_class)
 {
-       /* BT_CLOCK_VALUE_STATUS_UNKNOWN is not supported as of 2.0 */
+       /* BT_CLOCK_SNAPSHOT_STATE_UNKNOWN is not supported as of 2.0 */
        return BT_TRUE;
 }
+
+void bt_stream_class_get_ref(const struct bt_stream_class *stream_class)
+{
+       bt_object_get_ref(stream_class);
+}
+
+void bt_stream_class_put_ref(const struct bt_stream_class *stream_class)
+{
+       bt_object_put_ref(stream_class);
+}
This page took 0.024694 seconds and 4 git commands to generate.