| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_STATIC_THREADS_H |
| 4 | #define NETDATA_STATIC_THREADS_H |
| 5 | |
| 6 | #include "common.h" |
| 7 | |
| 8 | extern const struct netdata_static_thread static_threads_common[]; |
| 9 | |
| 10 | struct netdata_static_thread * |
| 11 | static_threads_concat(const struct netdata_static_thread *lhs, |
| 12 | const struct netdata_static_thread *rhs); |
| 13 | |
| 14 | struct netdata_static_thread *static_threads_get(); |
| 15 | |
| 16 | #endif /* NETDATA_STATIC_THREADS_H */ |