lib: update copyrights
[babeltrace.git] / lib / graph / graph.c
index 3ba2321e5572c72a31f49af76469995ba62fb2f0..56f98b13aecee5970e969b924f39c24acee2cca6 100644 (file)
@@ -1,6 +1,6 @@
 /*
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
- * Copyright 2017 Philippe Proulx <pproulx@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
@@ -39,9 +39,9 @@
 #include <babeltrace/compiler-internal.h>
 #include <babeltrace/common-internal.h>
 #include <babeltrace/types.h>
-#include <babeltrace/values.h>
-#include <babeltrace/values-const.h>
-#include <babeltrace/values-internal.h>
+#include <babeltrace/value.h>
+#include <babeltrace/value-const.h>
+#include <babeltrace/value-internal.h>
 #include <babeltrace/object.h>
 #include <babeltrace/assert-internal.h>
 #include <babeltrace/assert-pre-internal.h>
@@ -293,7 +293,7 @@ static
 void destroy_notification_packet_begin(struct bt_notification *notif,
                struct bt_graph *graph)
 {
-       bt_notification_packet_begin_destroy(notif);
+       bt_notification_packet_beginning_destroy(notif);
 }
 
 static
@@ -464,7 +464,7 @@ struct bt_graph *bt_graph_create(void)
        }
 
        ret = bt_object_pool_initialize(&graph->packet_begin_notif_pool,
-               (bt_object_pool_new_object_func) bt_notification_packet_begin_new,
+               (bt_object_pool_new_object_func) bt_notification_packet_beginning_new,
                (bt_object_pool_destroy_object_func) destroy_notification_packet_begin,
                graph);
        if (ret) {
This page took 0.024268 seconds and 4 git commands to generate.