Fix compile warning on non-x86 targets, fix alios build error (#923)

And fix os_thread_signal_init issue on windows platform
This commit is contained in:
Wenyong Huang
2021-12-30 10:07:50 +08:00
committed by GitHub
parent 20867c9227
commit cdf306364e
3 changed files with 10 additions and 9 deletions

View File

@ -614,7 +614,7 @@ os_thread_signal_init()
bool ret;
if (thread_signal_inited)
return true;
return 0;
ret = SetThreadStackGuarantee(&StackSizeInBytes);
if (ret)