bt2: update value.py, make test_value pass
[babeltrace.git] / lib / graph / component-sink.c
index 4281482285d60db5cf4a23c1de72ff6f8608bbc2..41a9a376108ff93e67730a2d4293708b21587c1e 100644 (file)
@@ -1,8 +1,7 @@
 /*
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  * Copyright 2015 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
@@ -25,6 +24,8 @@
 #define BT_LOG_TAG "COMP-SINK"
 #include <babeltrace/lib-logging-internal.h>
 
+#include <babeltrace/assert-internal.h>
+#include <babeltrace/assert-pre-internal.h>
 #include <babeltrace/compiler-internal.h>
 #include <babeltrace/value.h>
 #include <babeltrace/graph/self-component-sink.h>
@@ -32,9 +33,6 @@
 #include <babeltrace/graph/component-sink-internal.h>
 #include <babeltrace/graph/component-internal.h>
 #include <babeltrace/graph/graph.h>
-#include <babeltrace/object.h>
-#include <babeltrace/assert-internal.h>
-#include <babeltrace/assert-pre-internal.h>
 
 BT_HIDDEN
 void bt_component_sink_destroy(struct bt_component *component)
@@ -124,3 +122,15 @@ end:
        bt_object_put_ref(port);
        return status;
 }
+
+void bt_component_sink_get_ref(
+               const struct bt_component_sink *component_sink)
+{
+       bt_object_get_ref(component_sink);
+}
+
+void bt_component_sink_put_ref(
+               const struct bt_component_sink *component_sink)
+{
+       bt_object_put_ref(component_sink);
+}
This page took 0.024913 seconds and 4 git commands to generate.