mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-08 12:46:14 +00:00
30 lines
439 B
C
30 lines
439 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "bh_platform.h"
|
|
#include "bh_assert.h"
|
|
#include "bh_log.h"
|
|
#include "wasm_export.h"
|
|
|
|
extern int
|
|
iwasm_main();
|
|
|
|
void
|
|
main(void)
|
|
{
|
|
iwasm_main();
|
|
for (;;) {
|
|
k_sleep(Z_TIMEOUT_MS(1000));
|
|
}
|
|
}
|
|
|
|
int
|
|
time_get_ms()
|
|
{
|
|
return k_uptime_get_32();
|
|
}
|