lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / include / babeltrace / graph / notification-event-internal.h
index de4a6a1260f996a90bec561ad1b08ce84dffe17f..ff165e3460f04be16403a6c847d328bf6890c21d 100644 (file)
@@ -1,13 +1,10 @@
-#ifndef BABELTRACE_COMPONENT_NOTIFICATION_EVENT_INTERNAL_H
-#define BABELTRACE_COMPONENT_NOTIFICATION_EVENT_INTERNAL_H
+#ifndef BABELTRACE_GRAPH_NOTIFICATION_EVENT_INTERNAL_H
+#define BABELTRACE_GRAPH_NOTIFICATION_EVENT_INTERNAL_H
 
 /*
- * BabelTrace - Plug-in Event Notification internal
- *
+ * 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
  */
 
 #include <babeltrace/compiler-internal.h>
-#include <babeltrace/ctf-ir/event.h>
+#include <babeltrace/trace-ir/event-class.h>
+#include <babeltrace/trace-ir/event.h>
 #include <babeltrace/graph/notification-internal.h>
-#include <babeltrace/graph/clock-class-priority-map.h>
+#include <babeltrace/assert-internal.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -38,36 +36,20 @@ extern "C" {
 
 struct bt_notification_event {
        struct bt_notification parent;
-       struct bt_ctf_event *event;
-       struct bt_clock_class_priority_map *cc_prio_map;
+       struct bt_event *event;
 };
 
-static inline
-struct bt_ctf_event *bt_notification_event_borrow_event(
-               struct bt_notification *notif)
-{
-       struct bt_notification_event *notif_event = container_of(notif,
-                       struct bt_notification_event, parent);
-
-       assert(notif_event);
-       return notif_event->event;
-}
-
-static inline
-struct bt_clock_class_priority_map *
-bt_notification_event_borrow_clock_class_priority_map(
-               struct bt_notification *notif)
-{
-       struct bt_notification_event *notif_event = container_of(notif,
-                       struct bt_notification_event, parent);
+BT_HIDDEN
+struct bt_notification *bt_notification_event_new(struct bt_graph *graph);
 
-       assert(notif_event);
-       return notif_event->cc_prio_map;
-}
+BT_HIDDEN
+void bt_notification_event_recycle(struct bt_notification *notif);
 
+BT_HIDDEN
+void bt_notification_event_destroy(struct bt_notification *notif);
 
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* BABELTRACECOMPONENTPLUGIN_NOTIFICATION_EVENT_INTERNAL_H */
+#endif /* BABELTRACE_GRAPH_NOTIFICATION_EVENT_INTERNAL_H */
This page took 0.023454 seconds and 4 git commands to generate.