Rename: bt_put(), bt_get() -> bt_object_put_ref(), bt_object_get_ref()
[babeltrace.git] / include / babeltrace / graph / notification-event.h
index 1df54eb2a6a098bee40b265cf0b94a06b745f524..888ab0381366338687f50330ec0271ff36bc87ec 100644 (file)
  * SOFTWARE.
  */
 
-/* For bt_get() */
-#include <babeltrace/ref.h>
+/* For bt_object_get_ref() */
+#include <babeltrace/object.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
 struct bt_notification;
+struct bt_private_connection_private_notification_iterator;
 struct bt_event;
-struct bt_clock_class_priority_map;
+struct bt_event_class;
 
-/**
- * Create an event notification.
- *
- * @param event                        The event
- * @returns                    An event notification instance
- *
- * @see #bt_notification_type
- */
-extern struct bt_notification *bt_notification_event_create(
-               struct bt_event *event,
-               struct bt_clock_class_priority_map *clock_class_priority_map);
+extern
+struct bt_notification *bt_notification_event_create(
+               struct bt_private_connection_private_notification_iterator *notification_iterator,
+               struct bt_event_class *event_class, struct bt_packet *packet);
 
 extern struct bt_event *bt_notification_event_borrow_event(
                struct bt_notification *notification);
 
-/**
- * Get an event notification's event.
- *
- * @param notification Event notification instance
- * @returns            An event instance
- *
- * @see #bt_event
- */
-static inline
-struct bt_event *bt_notification_event_get_event(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_event_borrow_event(notification));
-}
-
-extern struct bt_clock_class_priority_map *
-bt_notification_event_borrow_clock_class_priority_map(
-               struct bt_notification *notification);
-
-static inline
-struct bt_clock_class_priority_map *
-bt_notification_event_get_clock_class_priority_map(
-               struct bt_notification *notification)
-{
-       return bt_get(bt_notification_event_borrow_clock_class_priority_map(
-               notification));
-}
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.025391 seconds and 4 git commands to generate.