Enable iwasm --max-threads option for wasi-threads as well (#1939)

This commit is contained in:
YAMAMOTO Takashi 2023-02-07 14:46:41 +09:00 committed by GitHub
parent aab875b91f
commit ee1871d3f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ print_help()
printf(" --module-path=<path> Indicate a module search path. default is current\n" printf(" --module-path=<path> Indicate a module search path. default is current\n"
" directory('./')\n"); " directory('./')\n");
#endif #endif
#if WASM_ENABLE_LIB_PTHREAD != 0 #if WASM_ENABLE_LIB_PTHREAD != 0 || WASM_ENABLE_LIB_WASI_THREADS != 0
printf(" --max-threads=n Set maximum thread number per cluster, default is 4\n"); printf(" --max-threads=n Set maximum thread number per cluster, default is 4\n");
#endif #endif
#if WASM_ENABLE_DEBUG_INTERP != 0 #if WASM_ENABLE_DEBUG_INTERP != 0
@ -499,7 +499,7 @@ main(int argc, char *argv[])
} }
} }
#endif #endif
#if WASM_ENABLE_LIB_PTHREAD != 0 #if WASM_ENABLE_LIB_PTHREAD != 0 || WASM_ENABLE_LIB_WASI_THREADS != 0
else if (!strncmp(argv[0], "--max-threads=", 14)) { else if (!strncmp(argv[0], "--max-threads=", 14)) {
if (argv[0][14] == '\0') if (argv[0][14] == '\0')
return print_help(); return print_help();

View File

@ -43,7 +43,7 @@ print_help()
printf(" --module-path=<path> Indicate a module search path. default is current\n" printf(" --module-path=<path> Indicate a module search path. default is current\n"
" directory('./')\n"); " directory('./')\n");
#endif #endif
#if WASM_ENABLE_LIB_PTHREAD != 0 #if WASM_ENABLE_LIB_PTHREAD != 0 || WASM_ENABLE_LIB_WASI_THREADS != 0
printf(" --max-threads=n Set maximum thread number per cluster, default is 4\n"); printf(" --max-threads=n Set maximum thread number per cluster, default is 4\n");
#endif #endif
#if WASM_ENABLE_DEBUG_INTERP != 0 #if WASM_ENABLE_DEBUG_INTERP != 0
@ -317,7 +317,7 @@ main(int argc, char *argv[])
} }
} }
#endif #endif
#if WASM_ENABLE_LIB_PTHREAD != 0 #if WASM_ENABLE_LIB_PTHREAD != 0 || WASM_ENABLE_LIB_WASI_THREADS != 0
else if (!strncmp(argv[0], "--max-threads=", 14)) { else if (!strncmp(argv[0], "--max-threads=", 14)) {
if (argv[0][14] == '\0') if (argv[0][14] == '\0')
return print_help(); return print_help();