Merge pull request #266 from veyon/fix-tls

LibVNCServer: properly use thread-local storage
pull/3/head
Christian Beier 5 years ago committed by GitHub
commit 2c61a095c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,10 +57,11 @@
* that we resort to using thread local storage instead of having
* per-client data.
*/
#if LIBVNCSERVER_HAVE_LIBPTHREAD && LIBVNCSERVER_HAVE_TLS && !defined(TLS) && defined(__linux__)
#if defined(__GNUC__)
#define TLS __thread
#endif
#ifndef TLS
#elif defined(_MSC_VER)
#define TLS __declspec(thread)
#else
#define TLS
#endif

@ -45,10 +45,11 @@
* tight. N.B. ZRLE does it the traditional way with per-client storage
* (and so at least ZRLE will work threaded on older systems.)
*/
#if LIBVNCSERVER_HAVE_LIBPTHREAD && LIBVNCSERVER_HAVE_TLS && !defined(TLS) && defined(__linux__)
#if defined(__GNUC__)
#define TLS __thread
#endif
#ifndef TLS
#elif defined(_MSC_VER)
#define TLS __declspec(thread)
#else
#define TLS
#endif

Loading…
Cancel
Save