Missing notification parameter in bt_component_sink_handle_notification
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 7 Jul 2015 14:43:32 +0000 (10:43 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 16:57:25 +0000 (12:57 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/plugin/sink.h

index 8284b348407190df6701fc81a7e16c9bff2e39af..5f188d33e80eff7a1c3411458a33c85e1c2dfc14 100644 (file)
  * SOFTWARE.
  */
 
-#include <babeltrace/plugin/plugin-system.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+struct bt_component;
+struct bt_notification;
+
 /**
  * Hand-off a notification to a sink component.
  *
  * @param component    Component instance
+ * @param notification Notification instance to handle
  * @returns            One of #bt_component_status values
  */
 enum bt_component_status bt_component_sink_handle_notification(
-               struct bt_component *component);
+               struct bt_component *component,
+               struct bt_notification *notification);
 
 #ifdef __cplusplus
 }
This page took 0.024838 seconds and 4 git commands to generate.