@@ -232,9 +232,9 @@ class Thread
232
232
static pthread_key_t s_threadObjectKey; /* !< Thread key. */
233
233
pthread_t m_thread; /* !< Current thread. */
234
234
#elif ERPC_THREADS_IS(FREERTOS)
235
- TaskHandle_t m_task; /* !< Current task. */
236
- Thread *m_next; /* !< Pointer to next Thread. */
237
- static Thread *s_first; /* !< Pointer to first Thread. */
235
+ TaskHandle_t m_task; /* !< Current task. */
236
+ Thread *m_next; /* !< Pointer to next Thread. */
237
+ static Thread *s_first; /* !< Pointer to first Thread. */
238
238
#if ERPC_ALLOCATION_POLICY == ERPC_ALLOCATION_POLICY_STATIC
239
239
StaticTask_t m_staticTask; /* !< Hold static task data. */
240
240
#endif
@@ -413,7 +413,7 @@ class Mutex
413
413
#elif ERPC_THREADS_IS(ZEPHYR)
414
414
struct k_mutex m_mutex; /* !< Mutex.*/
415
415
#elif ERPC_THREADS_IS(MBED)
416
- rtos::Mutex *m_mutex; /* !< Mutex. */
416
+ rtos::Mutex *m_mutex; /* !< Mutex. */
417
417
#elif ERPC_THREADS_IS(WIN32)
418
418
HANDLE m_mutex;
419
419
#elif ERPC_THREADS_IS(THREADX)
@@ -499,7 +499,7 @@ class Semaphore
499
499
SemaphoreHandle_t m_sem; /* !< Semaphore. */
500
500
StaticSemaphore_t m_staticQueue; /* !< Static queue. */
501
501
#elif ERPC_THREADS_IS(ZEPHYR)
502
- struct k_sem m_sem; /* !< Semaphore. */
502
+ struct k_sem m_sem; /* !< Semaphore. */
503
503
#elif ERPC_THREADS_IS(MBED)
504
504
rtos::Semaphore *m_sem; /* !< Semaphore. */
505
505
int m_count; /* !< Semaphore count number. */
0 commit comments