Fix zephyr samples build issue caused by zephyr kernel API update (#232)

* Clean compiling warnings of zephyr samples

* Support xtensa AOT and fix build issue of alios

* Refine wgl native functions call

* Fix zephyr samples build issue caused by zephyr kernel API update
This commit is contained in:
Weining
2020-04-13 07:46:16 +08:00
committed by GitHub
parent 42d982e431
commit ffd975d2d6
5 changed files with 11 additions and 11 deletions

View File

@ -16,7 +16,7 @@ void main(void)
{
iwasm_main();
for(;;){
k_sleep(1000);
k_sleep(Z_TIMEOUT_MS(1000));
}
}