Merge 10.6 into 10.11

This commit is contained in:
Marko Mäkelä 2024-12-19 15:38:53 +02:00
commit a54d151fc1
129 changed files with 1403 additions and 1731 deletions

View file

@ -271,12 +271,7 @@ error_exit_in_thread(intptr_t code)
CRITICAL_SECTION_ENTER(grntest_cs);
grntest_stop_flag = 1;
CRITICAL_SECTION_LEAVE(grntest_cs);
#ifdef WIN32
_endthreadex(code);
#else
pthread_exit((void *)code);
#endif /* WIN32 */
return 0;
return code;
}