Move to kernel style SPDX license identifiers
[lttng-ust.git] / liblttng-ust-python-agent / lttng_ust_python.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2014 David Goulet <dgoulet@efficios.com>
5 */
6
7 #define _LGPL_SOURCE
8 #define TRACEPOINT_DEFINE
9 #define TRACEPOINT_CREATE_PROBES
10 #include "lttng_ust_python.h"
11
12 /*
13 * The tracepoint fired by the agent.
14 */
15
16 void py_tracepoint(const char *asctime, const char *msg,
17 const char *logger_name, const char *funcName, unsigned int lineno,
18 unsigned int int_loglevel, unsigned int thread, const char *threadName)
19 {
20 tracepoint(lttng_python, event, asctime, msg, logger_name, funcName,
21 lineno, int_loglevel, thread, threadName);
22 }
This page took 0.029283 seconds and 4 git commands to generate.