lib: use object pool for event and packet notifications
[babeltrace.git] / include / babeltrace / graph / notification-stream.h
index c022343b246911c31affe0ba0d6211e9b92bcd46..e016117ae9c2691ee5955b4f264b2767f9d76c47 100644 (file)
  * SOFTWARE.
  */
 
+/* For bt_get() */
+#include <babeltrace/ref.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct bt_ctf_notification;
-struct bt_ctf_stream;
+struct bt_notification;
+struct bt_stream;
 
-extern struct bt_notification *bt_notification_stream_begin_create(
-               struct bt_ctf_stream *stream);
+extern
+struct bt_notification *bt_notification_stream_begin_create(
+               struct bt_graph *graph,
+               struct bt_stream *stream);
 
-extern struct bt_notification *bt_notification_stream_end_create(
-               struct bt_ctf_stream *stream);
+extern
+struct bt_notification *bt_notification_stream_end_create(
+               struct bt_graph *graph,
+               struct bt_stream *stream);
 
-extern struct bt_ctf_stream *bt_notification_stream_begin_get_stream(
+extern struct bt_stream *bt_notification_stream_begin_borrow_stream(
                struct bt_notification *notification);
 
-extern struct bt_ctf_stream *bt_notification_stream_end_get_stream(
+static inline
+struct bt_stream *bt_notification_stream_begin_get_stream(
+               struct bt_notification *notification)
+{
+       return bt_get(bt_notification_stream_begin_borrow_stream(notification));
+}
+
+extern struct bt_stream *bt_notification_stream_end_borrow_stream(
                struct bt_notification *notification);
 
+static inline
+struct bt_stream *bt_notification_stream_end_get_stream(
+               struct bt_notification *notification)
+{
+       return bt_get(bt_notification_stream_end_borrow_stream(notification));
+}
+
 #ifdef __cplusplus
 }
 #endif
This page took 0.026014 seconds and 4 git commands to generate.