mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-06-18 02:59:21 +00:00
Fix build with ancient GCC (4.8) (#2553)
Fixes: https://github.com/bytecodealliance/wasm-micro-runtime/issues/2552
This commit is contained in:
parent
f697244f33
commit
9c34fc3514
|
@ -497,7 +497,10 @@ dump_pgo_prof_data(wasm_module_inst_t module_inst, const char *path)
|
|||
struct timeout_arg {
|
||||
uint32 timeout_ms;
|
||||
wasm_module_inst_t inst;
|
||||
_Atomic bool cancel;
|
||||
#if defined(BH_HAS_STD_ATOMIC)
|
||||
_Atomic
|
||||
#endif
|
||||
bool cancel;
|
||||
};
|
||||
|
||||
void *
|
||||
|
|
Loading…
Reference in New Issue
Block a user