We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d8fe5d commit 4c48220Copy full SHA for 4c48220
core/shared/platform/nuttx/nuttx_platform.c
@@ -117,13 +117,17 @@ os_dcache_flush()
117
&& defined(CONFIG_ARCH_HAVE_TEXT_HEAP_SEPARATE_DATA_ADDRESS)
118
up_textheap_data_sync();
119
#endif
120
+#ifndef CONFIG_BUILD_KERNEL
121
up_invalidate_dcache_all();
122
+#endif
123
}
124
125
void
126
os_icache_flush(void *start, size_t len)
127
{
128
129
up_invalidate_icache((uintptr_t)start, (uintptr_t)start + len);
130
131
132
133
#if (WASM_MEM_DUAL_BUS_MIRROR != 0)
0 commit comments