forked from lttng/lttng-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LICENSE
35 lines (21 loc) · 828 Bytes
/
LICENSE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
LTTng Tools is provided under:
SPDX-License-Identifier: GPL-2.0-only
Being under the terms of the GNU General Public License version 2 only,
according with:
LICENSES/GPL-2.0
The library part is provided under:
SPDX-License-Identifier: LGPL-2.1-only
Being under the terms of the GNU Lesser General Public License version 2.1
only, according with:
LICENSES/LGPL-2.1
This applies to:
include/lttng/*
src/lib/lttng-ctl/*
In addition, other licenses may also apply, see SPDX-License-Identifier in
individual files.
LGPL-compatible source code can statically use the library header using:
#define _LGPL_SOURCE
#include <lttng/lttng.h>
Dynamic-only linking with the LGPL library is used if _LGPL_SOURCE is not
defined. It permits relinking with newer versions of the library, which is
required by the LGPL license.