master
h 12 lines 224 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef NETDATA_GETTID_H
4 #define NETDATA_GETTID_H
5
6 #include <unistd.h>
7
8 pid_t os_gettid(void);
9 pid_t gettid_cached(void);
10 pid_t gettid_uncached(void);
11
12 #endif //NETDATA_GETTID_H