|
1 | 1 | /* |
2 | 2 | * Copyright (c) 2014-2016, Freescale Semiconductor, Inc. |
3 | | - * Copyright 2016-2017 NXP |
| 3 | + * Copyright 2016-2020 NXP |
4 | 4 | * All rights reserved. |
5 | 5 | * |
6 | 6 | * |
@@ -214,7 +214,7 @@ class Thread |
214 | 214 | struct k_thread m_thread; /*!< Current thread. */ |
215 | 215 | k_thread_stack_t *m_stack; /*!< Pointer to stack. */ |
216 | 216 | #elif ERPC_THREADS_IS(MBED) |
217 | | - rtos::Thread* m_thread; /*!< Underlying Thread instance */ |
| 217 | + rtos::Thread *m_thread; /*!< Underlying Thread instance */ |
218 | 218 | Thread *m_next; /*!< Pointer to next Thread. */ |
219 | 219 | static Thread *s_first; /*!< Pointer to first Thread. */ |
220 | 220 | #endif |
@@ -249,10 +249,10 @@ class Thread |
249 | 249 | #elif ERPC_THREADS_IS(MBED) |
250 | 250 |
|
251 | 251 | /*! |
252 | | - * @brief This function execute threadEntryPoint function. |
253 | | - * |
254 | | - * @param[in] arg Thread to execute. |
255 | | - */ |
| 252 | + * @brief This function execute threadEntryPoint function. |
| 253 | + * |
| 254 | + * @param[in] arg Thread to execute. |
| 255 | + */ |
256 | 256 | static void threadEntryPointStub(void *arg); |
257 | 257 |
|
258 | 258 | #endif |
@@ -359,7 +359,7 @@ class Mutex |
359 | 359 | #elif ERPC_THREADS_IS(ZEPHYR) |
360 | 360 | struct k_mutex m_mutex; /*!< Mutex.*/ |
361 | 361 | #elif ERPC_THREADS_IS(MBED) |
362 | | - rtos::Mutex* m_mutex; /*!< Mutex. */ |
| 362 | + rtos::Mutex *m_mutex; /*!< Mutex. */ |
363 | 363 | #endif |
364 | 364 |
|
365 | 365 | private: |
@@ -442,7 +442,7 @@ class Semaphore |
442 | 442 | #elif ERPC_THREADS_IS(ZEPHYR) |
443 | 443 | struct k_sem m_sem; /*!< Semaphore. */ |
444 | 444 | #elif ERPC_THREADS_IS(MBED) |
445 | | - rtos::Semaphore* m_sem; /*!< Semaphore. */ |
| 445 | + rtos::Semaphore *m_sem; /*!< Semaphore. */ |
446 | 446 | int m_count; /*!< Semaphore count number. */ |
447 | 447 | #endif |
448 | 448 |
|
|
0 commit comments