Merge 10.11 into 11.4

This commit is contained in:
Marko Mäkelä 2025-01-09 07:58:08 +02:00
commit 17f01186f5
473 changed files with 4734 additions and 3152 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;
}