mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
Fix inverted WASM_DISABLE_WAKEUP_BLOCKING_OP checks (#2571)
This commit is contained in:
parent
444b159963
commit
6fca48d8e6
|
@ -102,7 +102,7 @@ os_sigreturn();
|
||||||
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
||||||
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
||||||
|
|
||||||
#if WASM_DISABLE_WAKEUP_BLOCKING_OP != 0
|
#if WASM_DISABLE_WAKEUP_BLOCKING_OP == 0
|
||||||
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
||||||
#endif
|
#endif
|
||||||
void
|
void
|
||||||
|
|
|
@ -101,7 +101,7 @@ os_sigreturn();
|
||||||
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
||||||
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
||||||
|
|
||||||
#if WASM_DISABLE_WAKEUP_BLOCKING_OP != 0
|
#if WASM_DISABLE_WAKEUP_BLOCKING_OP == 0
|
||||||
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
||||||
#endif
|
#endif
|
||||||
void
|
void
|
||||||
|
|
|
@ -115,7 +115,7 @@ os_sigreturn();
|
||||||
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64/RISCV64 */
|
||||||
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */
|
||||||
|
|
||||||
#if WASM_DISABLE_WAKEUP_BLOCKING_OP != 0
|
#if WASM_DISABLE_WAKEUP_BLOCKING_OP == 0
|
||||||
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
||||||
#endif
|
#endif
|
||||||
void
|
void
|
||||||
|
|
|
@ -123,7 +123,7 @@ utimensat(int fd, const char *path, const struct timespec ts[2], int flag);
|
||||||
DIR *
|
DIR *
|
||||||
fdopendir(int fd);
|
fdopendir(int fd);
|
||||||
|
|
||||||
#if WASM_DISABLE_WAKEUP_BLOCKING_OP != 0
|
#if WASM_DISABLE_WAKEUP_BLOCKING_OP == 0
|
||||||
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
#define OS_ENABLE_WAKEUP_BLOCKING_OP
|
||||||
#endif
|
#endif
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue
Block a user