Fix: variable declaration shadows previously declared variable
[babeltrace.git] / include / babeltrace / graph / notification-event.h
index e5947b7ed09b4c8fd04b0016b938c0525696f9e0..1dd626623bfa630b1957d8df89c97679ac17dab2 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_EVENT_H
+#define BABELTRACE_GRAPH_NOTIFICATION_EVENT_H
 
 /*
  * BabelTrace - Plug-in Event Notification
@@ -33,6 +33,7 @@ extern "C" {
 
 struct bt_notification;
 struct bt_ctf_event;
+struct bt_clock_class_priority_map;
 
 /***BT_NOTIFICATION_TYPE_EVENT ***/
 /**
@@ -44,7 +45,8 @@ struct bt_ctf_event;
  * @see #bt_notification_type
  */
 extern struct bt_notification *bt_notification_event_create(
-               struct bt_ctf_event *event);
+               struct bt_ctf_event *event,
+               struct bt_clock_class_priority_map *clock_class_priority_map);
 
 /**
  * Get an event notification's event.
@@ -57,8 +59,12 @@ extern struct bt_notification *bt_notification_event_create(
 extern struct bt_ctf_event *bt_notification_event_get_event(
                struct bt_notification *notification);
 
+extern struct bt_clock_class_priority_map *
+bt_notification_event_get_clock_class_priority_map(
+               struct bt_notification *notification);
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACE_COMPONENT_NOTIFICATION_EVENT_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_EVENT_H */
This page took 0.027131 seconds and 4 git commands to generate.