Move to kernel style SPDX license identifiers
[babeltrace.git] / tests / lib / test-plugin-plugins / minimal.c
index eb89a7e5ec4f05030b8b890dae6a467f5e781ed9..693f9db5a639153e57f0a5e903369b74f118c0b2 100644 (file)
@@ -1,33 +1,22 @@
 /*
- * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; under version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * Copyright (C) 2017 Philippe Proulx <pproulx@efficios.com>
  */
 
-#include <babeltrace/babeltrace.h>
+#include <babeltrace2/babeltrace.h>
 #include <stdlib.h>
 #include <glib.h>
 
-static enum bt_self_plugin_status plugin_init(bt_self_plugin *plugin)
+static bt_plugin_initialize_func_status plugin_init(bt_self_plugin *plugin)
 {
-       g_setenv("BT_TEST_PLUGIN_INIT_CALLED", "1", 1);
-       return BT_SELF_PLUGIN_STATUS_OK;
+       g_setenv("BT_TEST_PLUGIN_INITIALIZE_CALLED", "1", 1);
+       return BT_PLUGIN_INITIALIZE_FUNC_STATUS_OK;
 }
 
-static void plugin_exit(void)
+static void plugin_finalize(void)
 {
-       g_setenv("BT_TEST_PLUGIN_EXIT_CALLED", "1", 1);
+       g_setenv("BT_TEST_PLUGIN_FINALIZE_CALLED", "1", 1);
 }
 
 BT_PLUGIN_MODULE();
@@ -35,5 +24,5 @@ BT_PLUGIN(test_minimal);
 BT_PLUGIN_DESCRIPTION("Minimal Babeltrace plugin with no component classes");
 BT_PLUGIN_AUTHOR("Janine Sutto");
 BT_PLUGIN_LICENSE("Beerware");
-BT_PLUGIN_INIT(plugin_init);
-BT_PLUGIN_EXIT(plugin_exit);
+BT_PLUGIN_INITIALIZE_FUNC(plugin_init);
+BT_PLUGIN_FINALIZE_FUNC(plugin_finalize);
This page took 0.024894 seconds and 4 git commands to generate.