static_threads.h 652 B

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