lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / include / babeltrace / graph / notification-packet.h
index 38c4f6e6f1f3a5b75ac1580cff3bf4b8e5d3b7c8..0b4cca976f3a9f44fac967df92883802d2b0a27d 100644 (file)
@@ -2,12 +2,9 @@
 #define BABELTRACE_GRAPH_NOTIFICATION_PACKET_H
 
 /*
- * BabelTrace - Plug-in Packet-related Notifications
- *
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  * Copyright 2016 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
  * SOFTWARE.
  */
 
+/* For bt_notification, bt_self_notification_iterator, bt_packet */
+#include <babeltrace/types.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct bt_notification;
-struct bt_packet;
-
-extern struct bt_notification *bt_notification_packet_begin_create(
-               struct bt_packet *packet);
+extern
+bt_notification *bt_notification_packet_beginning_create(
+               bt_self_notification_iterator *notification_iterator,
+               bt_packet *packet);
 
-extern struct bt_notification *bt_notification_packet_end_create(
-               struct bt_packet *packet);
+extern
+bt_notification *bt_notification_packet_end_create(
+               bt_self_notification_iterator *notification_iterator,
+               bt_packet *packet);
 
-/*** BT_NOTIFICATION_TYPE_PACKET_BEGIN ***/
-extern struct bt_packet *bt_notification_packet_begin_get_packet(
-               struct bt_notification *notification);
+extern bt_packet *bt_notification_packet_beginning_borrow_packet(
+               bt_notification *notification);
 
-/*** BT_NOTIFICATION_TYPE_PACKET_END ***/
-extern struct bt_packet *bt_notification_packet_end_get_packet(
-               struct bt_notification *notification);
+extern bt_packet *bt_notification_packet_end_borrow_packet(
+               bt_notification *notification);
 
 #ifdef __cplusplus
 }
This page took 0.025575 seconds and 4 git commands to generate.