lib: update copyrights
[babeltrace.git] / include / babeltrace / graph / notification-packet.h
index a15a96924457edb1ce131c90d03ead3e1aeb54e7..25bcb5e6e0cd2d60a566042f2d0e724c82570877 100644 (file)
@@ -1,13 +1,10 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_PACKET_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_PACKET_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_PACKET_H
+#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.
  */
 
-#include <babeltrace/graph/notification.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct bt_ctf_packet;
+struct bt_notification;
+struct bt_self_notification_iterator;
+struct bt_packet;
 
-/*** BT_NOTIFICATION_TYPE_PACKET_BEGIN ***/
-struct bt_notification *bt_notification_packet_begin_create(
-               struct bt_ctf_packet *packet);
-struct bt_ctf_packet *bt_notification_packet_begin_get_packet(
-               struct bt_notification *notification);
+extern
+struct bt_notification *bt_notification_packet_beginning_create(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_packet *packet);
 
-/*** BT_NOTIFICATION_TYPE_PACKET_END ***/
+extern
 struct bt_notification *bt_notification_packet_end_create(
-               struct bt_ctf_packet *packet);
-struct bt_ctf_packet *bt_notification_packet_end_get_packet(
+               struct bt_self_notification_iterator *notification_iterator,
+               struct bt_packet *packet);
+
+extern struct bt_packet *bt_notification_packet_beginning_borrow_packet(
+               struct bt_notification *notification);
+
+extern struct bt_packet *bt_notification_packet_end_borrow_packet(
                struct bt_notification *notification);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_PACKET_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_PACKET_H */
This page took 0.025949 seconds and 4 git commands to generate.