diff --git a/IDE/INTIME-RTOS/user_settings.h b/IDE/INTIME-RTOS/user_settings.h index dfff66834..fa4867fe1 100755 --- a/IDE/INTIME-RTOS/user_settings.h +++ b/IDE/INTIME-RTOS/user_settings.h @@ -43,6 +43,7 @@ extern "C" { /* if using in single threaded mode */ #undef SINGLE_THREADED //#define SINGLE_THREADED +/* Note: HAVE_THREAD_LS is not support for INtime RTOS */ /* reduces stack usage, by using malloc/free for stack variables over 100 bytes */ #undef WOLFSSL_SMALL_STACK diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index bf458fe39..5e405dd21 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -149,10 +149,7 @@ /* set up thread local storage if available */ #ifdef HAVE_THREAD_LS - #if defined(INTIME_RTOS) - /* Thread local storage not supported */ - #define THREAD_LS_T - #elif defined(_MSC_VER) + #if defined(_MSC_VER) #define THREAD_LS_T __declspec(thread) /* Thread local storage only in FreeRTOS v8.2.1 and higher */ #elif defined(FREERTOS)