Nucleus Thread Types

Add a type block for Nucleus RTOS's thread types.
This commit is contained in:
John Safranek
2022-10-21 11:40:59 -07:00
parent 378d475c5f
commit 7c8dafab2f

View File

@ -1247,6 +1247,10 @@ typedef struct w64wrapper {
typedef unsigned int THREAD_RETURN;
typedef int THREAD_TYPE;
#define WOLFSSL_THREAD
#elif defined(WOLFSSL_NUCLEUS)
typedef unsigned int THREAD_RETURN;
typedef intptr_t THREAD_TYPE;
#define WOLFSSL_THREAD
#elif defined(WOLFSSL_TIRTOS)
typedef void THREAD_RETURN;
typedef Task_Handle THREAD_TYPE;