aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libssh/priv.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 7168cf55..d7974026 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -130,6 +130,14 @@ int gettimeofday(struct timeval *__p, void *__t);
#endif
#endif
+#if defined(HAVE_GCC_THREAD_LOCAL_STORAGE)
+# define LIBSSH_THREAD __thread
+#elif defined(HAVE_MSC_THREAD_LOCAL_STORAGE)
+# define LIBSSH_THREAD __declspec(thread)
+#else
+# define LIBSSH_THREAD
+#endif
+
#define enter_function() (void)session
#define leave_function() (void)session