.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / regression / ust / clock-override / lttng-ust-clock-override-test.c
index b918f787c4fc1892874c33f9704e7f6498717312..180712ee8dc19c61371673668300d2ad9321cea7 100644 (file)
 /*
  * lttng-clock-override-test.c
  *
- * Copyright (c) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- * Copyright (c) 2015 Jonthan Rajotte <jonathan.rajotte-julien@efficios.com>
- * Based on lttng-clock-override-example.c from LTTng-ust example
+ * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * Copyright (C) 2015 Jonthan Rajotte <jonathan.rajotte-julien@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
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
+ * SPDX-License-Identifier: MIT
  *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
+ * Based on lttng-clock-override-example.c from LTTng-ust example
  *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
  */
 
+#include <common/compat/time.hpp>
+
+#include <lttng/lttng-export.h>
+#include <lttng/ust-clock.h>
+
+#include <stdio.h>
 #include <stdlib.h>
-#include <common/compat/time.h>
 #include <string.h>
-#include <stdio.h>
-#include <lttng/ust-clock.h>
 
-static
-uint64_t plugin_read64(void)
+static uint64_t plugin_read64(void)
 {
        /* Freeze time */
        return 0;
 }
 
-static
-uint64_t plugin_freq(void)
+static uint64_t plugin_freq(void)
 {
-       return 1000;    /* 1KHz clock (very coarse!) */
+       return 1000; /* 1KHz clock (very coarse!) */
 }
 
-static
-int plugin_uuid(char *uuid)
+static int plugin_uuid(char *uuid)
 {
        const char myuuid[] = "83c63deb-7aa4-48fb-abda-946f400d76e6";
        memcpy(uuid, myuuid, LTTNG_UST_UUID_STR_LEN);
        return 0;
 }
 
-static
-const char *plugin_name(void)
+static const char *plugin_name(void)
 {
        return "lttng_test_clock_override";
 }
 
-static
-const char *plugin_description(void)
+static const char *plugin_description(void)
 {
        return "Freeze time with 1KHz for regression test";
 }
 
+LTTNG_EXPORT void lttng_ust_clock_plugin_init(void);
 void lttng_ust_clock_plugin_init(void)
 {
        int ret;
 
        ret = lttng_ust_trace_clock_set_read64_cb(plugin_read64);
        if (ret) {
-               fprintf(stderr, "Error setting clock override read64 callback: %s\n",
+               fprintf(stderr,
+                       "Error setting clock override read64 callback: %s\n",
                        strerror(-ret));
                goto error;
        }
        ret = lttng_ust_trace_clock_set_freq_cb(plugin_freq);
        if (ret) {
-               fprintf(stderr, "Error setting clock override freq callback: %s\n",
-                       strerror(-ret));
+               fprintf(stderr, "Error setting clock override freq callback: %s\n", strerror(-ret));
                goto error;
        }
        ret = lttng_ust_trace_clock_set_uuid_cb(plugin_uuid);
        if (ret) {
-               fprintf(stderr, "Error setting clock override uuid callback: %s\n",
-                       strerror(-ret));
+               fprintf(stderr, "Error setting clock override uuid callback: %s\n", strerror(-ret));
                goto error;
        }
 
        ret = lttng_ust_trace_clock_set_name_cb(plugin_name);
        if (ret) {
-               fprintf(stderr, "Error setting clock override name callback: %s\n",
-                       strerror(-ret));
+               fprintf(stderr, "Error setting clock override name callback: %s\n", strerror(-ret));
                goto error;
        }
 
        ret = lttng_ust_trace_clock_set_description_cb(plugin_description);
        if (ret) {
-               fprintf(stderr, "Error setting clock override description callback: %s\n",
+               fprintf(stderr,
+                       "Error setting clock override description callback: %s\n",
                        strerror(-ret));
                goto error;
        }
 
        ret = lttng_ust_enable_trace_clock_override();
        if (ret) {
-               fprintf(stderr, "Error enabling clock override: %s\n",
-                       strerror(-ret));
+               fprintf(stderr, "Error enabling clock override: %s\n", strerror(-ret));
                goto error;
        }
 
This page took 0.024758 seconds and 4 git commands to generate.