* @brief Gets the thread local storage buffer. * @return The thread local storage buffer. */
| 529 | * @return The thread local storage buffer. |
| 530 | */ |
| 531 | static inline void* getThreadLocalStorage(void) |
| 532 | { |
| 533 | void* ret; |
| 534 | __asm__ ("mrc p15, 0, %[data], c13, c0, 3" : [data] "=r" (ret)); |
| 535 | return ret; |
| 536 | } |
| 537 | |
| 538 | /** |
| 539 | * @brief Gets the thread command buffer. |
no outgoing calls
no test coverage detected