lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / graph / notification-packet.h
index e3c9d55b401e094c5d575497b69a157c050d932c..a6d6c7fa015470909e622c62aac5214833e2a815 100644 (file)
@@ -2,8 +2,6 @@
 #define BABELTRACE_GRAPH_NOTIFICATION_PACKET_H
 
 /*
- * BabelTrace - Plug-in Packet-related Notifications
- *
  * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
@@ -27,9 +25,6 @@
  * SOFTWARE.
  */
 
-/* For bt_get() */
-#include <babeltrace/ref.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -37,35 +32,12 @@ extern "C" {
 struct bt_notification;
 struct bt_packet;
 
-extern
-struct bt_notification *bt_notification_packet_begin_create(
-               struct bt_graph *graph, struct bt_packet *packet);
-
-extern
-struct bt_notification *bt_notification_packet_end_create(
-               struct bt_graph *graph, struct bt_packet *packet);
-
-
-extern struct bt_packet *bt_notification_packet_begin_borrow_packet(
+extern const struct bt_packet *bt_notification_packet_begin_borrow_packet(
                struct bt_notification *notification);
 
-static inline
-struct bt_packet *bt_notification_packet_begin_get_packet(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_packet_begin_borrow_packet(notification));
-}
-
-extern struct bt_packet *bt_notification_packet_end_borrow_packet(
+extern const struct bt_packet *bt_notification_packet_end_borrow_packet(
                struct bt_notification *notification);
 
-static inline
-struct bt_packet *bt_notification_packet_end_get_packet(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_packet_end_borrow_packet(notification));
-}
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.02733 seconds and 4 git commands to generate.