Tracepoint API namespacing tracelog
[lttng-ust.git] / doc / examples / demo-tracelog / demo-vtracelog.c
index c3e604ce2aaec2f60de4c2f21fb02429a55bfa81..69e7d5d2c328ab48faeaf9efe1aec90a78bff4db 100644 (file)
@@ -1,19 +1,7 @@
 /*
- * Copyright (C) 2020  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1 of
- * the License.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ * Copyright (C) 2020 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  */
 
 #include <stdarg.h>
 
 #include <lttng/tracelog.h>
 
+static
+void print_err(const char* msg, ...)
+       __attribute__((format(printf, 1, 2)));
+static
 void print_err(const char* msg, ...)
 {
        va_list ap;
 
        va_start(ap, msg);
-       vtracelog(TRACE_ERR, msg, ap);
+       lttng_ust_vtracelog(LTTNG_UST_TRACEPOINT_LOGLEVEL_ERR, msg, ap);
        va_end(ap);
 }
 
This page took 0.023226 seconds and 4 git commands to generate.