Performs a Data Synchronization Barrier operation.
| 32 | |
| 33 | /// Performs a Data Synchronization Barrier operation. |
| 34 | static inline void __dsb(void) |
| 35 | { |
| 36 | __asm__ __volatile__("mcr p15, 0, %[val], c7, c10, 4" :: [val] "r" (0) : "memory"); |
| 37 | } |
| 38 | |
| 39 | /// Performs a Data Memory Barrier operation. |
| 40 | static inline void __dmb(void) |
no outgoing calls
no test coverage detected