lib: rename "begin" to "beginning" when used as a noun
[babeltrace.git] / include / babeltrace / graph / notification-packet.h
index 38c4f6e6f1f3a5b75ac1580cff3bf4b8e5d3b7c8..ac293baa3c96e0a3a1f533ea9e95f4a2631dcf4a 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>
@@ -32,20 +30,23 @@ extern "C" {
 #endif
 
 struct bt_notification;
+struct bt_self_notification_iterator;
 struct bt_packet;
 
-extern struct bt_notification *bt_notification_packet_begin_create(
+extern
+struct bt_notification *bt_notification_packet_beginning_create(
+               struct bt_self_notification_iterator *notification_iterator,
                struct bt_packet *packet);
 
-extern struct bt_notification *bt_notification_packet_end_create(
+extern
+struct bt_notification *bt_notification_packet_end_create(
+               struct bt_self_notification_iterator *notification_iterator,
                struct bt_packet *packet);
 
-/*** BT_NOTIFICATION_TYPE_PACKET_BEGIN ***/
-extern struct bt_packet *bt_notification_packet_begin_get_packet(
+extern struct bt_packet *bt_notification_packet_beginning_borrow_packet(
                struct bt_notification *notification);
 
-/*** BT_NOTIFICATION_TYPE_PACKET_END ***/
-extern struct bt_packet *bt_notification_packet_end_get_packet(
+extern struct bt_packet *bt_notification_packet_end_borrow_packet(
                struct bt_notification *notification);
 
 #ifdef __cplusplus
This page took 0.022912 seconds and 4 git commands to generate.