Refactor to help future other implementations
Improve the definition of mbedtls_test_thread_t to assist adding future threading implementations, when they happen. Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
0c847bcbe7
commit
24e9a32c83
1 changed files with 16 additions and 8 deletions
|
@ -27,11 +27,6 @@
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_PTHREAD)
|
#if defined(MBEDTLS_THREADING_PTHREAD)
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
typedef struct mbedtls_test_thread_t {
|
|
||||||
pthread_t MBEDTLS_PRIVATE(thread);
|
|
||||||
} mbedtls_test_thread_t;
|
|
||||||
|
|
||||||
#endif /* MBEDTLS_THREADING_PTHREAD */
|
#endif /* MBEDTLS_THREADING_PTHREAD */
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_ALT)
|
#if defined(MBEDTLS_THREADING_ALT)
|
||||||
|
@ -58,6 +53,19 @@ void mbedtls_test_thread_set_alt(int (*thread_create)(mbedtls_test_thread_t *thr
|
||||||
void *thread_data),
|
void *thread_data),
|
||||||
int (*thread_join)(mbedtls_test_thread_t *thread));
|
int (*thread_join)(mbedtls_test_thread_t *thread));
|
||||||
|
|
||||||
|
#else /* MBEDTLS_THREADING_ALT*/
|
||||||
|
|
||||||
|
typedef struct mbedtls_test_thread_t {
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_THREADING_PTHREAD)
|
||||||
|
pthread_t MBEDTLS_PRIVATE(thread);
|
||||||
|
#else /* MBEDTLS_THREADING_PTHREAD */
|
||||||
|
/* Make sure this struct is always non-empty */
|
||||||
|
unsigned dummy;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} mbedtls_test_thread_t;
|
||||||
|
|
||||||
#endif /* MBEDTLS_THREADING_ALT*/
|
#endif /* MBEDTLS_THREADING_ALT*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue