X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fdemo-tracelog%2Fdemo-vtracelog.c;h=69e7d5d2c328ab48faeaf9efe1aec90a78bff4db;hb=1698631bb3fbab41277b3953e193dd2fd4a74afa;hp=c3e604ce2aaec2f60de4c2f21fb02429a55bfa81;hpb=bd9bb3c77252c984f8b6a7cbfb1d6ebbd069159c;p=lttng-ust.git diff --git a/doc/examples/demo-tracelog/demo-vtracelog.c b/doc/examples/demo-tracelog/demo-vtracelog.c index c3e604ce..69e7d5d2 100644 --- a/doc/examples/demo-tracelog/demo-vtracelog.c +++ b/doc/examples/demo-tracelog/demo-vtracelog.c @@ -1,19 +1,7 @@ /* - * Copyright (C) 2020 Mathieu Desnoyers + * 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 */ #include @@ -23,12 +11,16 @@ #include +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); }