summaryrefslogtreecommitdiffstats
path: root/src/libnetdata/os/gettid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnetdata/os/gettid.c')
-rw-r--r--src/libnetdata/os/gettid.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libnetdata/os/gettid.c b/src/libnetdata/os/gettid.c
index 273c428f8..d61819445 100644
--- a/src/libnetdata/os/gettid.c
+++ b/src/libnetdata/os/gettid.c
@@ -2,10 +2,6 @@
#include "../libnetdata.h"
-#if defined(OS_WINDOWS)
-#include <windows.h>
-#endif
-
pid_t os_gettid(void) {
#if defined(HAVE_GETTID)
return gettid();
@@ -30,4 +26,9 @@ pid_t gettid_cached(void) {
gettid_cached_tid = os_gettid();
return gettid_cached_tid;
-} \ No newline at end of file
+}
+
+pid_t gettid_uncached(void) {
+ gettid_cached_tid = 0;
+ return gettid_cached();
+}