reactos/sdk/lib/crt
Joachim Henze fef1907bb3 [0.4.14][CRT] Do Not lock ioinfo when spawning functions (#4099) CORE-15176
This fixes CORE-15176 'Gimp 2.6.11 hangs when opening a file'.
It regressed by 0.4.9-dev-446-g bffd8201d0

Fix picked from 0.4.15-dev-3363-g 252a7530d0
2021-11-11 18:35:14 +01:00
..
conio
direct
except [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
float
include [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
locale
math [SDK] Use HEX macro, like elsewhere in the file 2020-01-22 20:57:04 +01:00
mbstring
mem
misc [0.4.14][PROGMAN][CRT][USER32] Do not use LoadLibraryEx() NT6+ flags (#3152) CORE-12004 2021-07-02 19:15:10 +02:00
printf
process
search
setjmp
signal
startup
stdio [0.4.14][CRT] Do Not lock ioinfo when spawning functions (#4099) CORE-15176 2021-11-11 18:35:14 +01:00
stdlib [0.4.14][CPPRT][CRT] Avoid extern assembly declarations with no type. CORE-17088 2020-06-07 22:32:04 +02:00
string [0.4.14][CRT] Fix 2 MSVC compiler warnings CORE-17812 2021-10-11 21:59:46 +02:00
sys_stat
time
wine [CRT] Import wine exception handling code 2020-02-09 15:56:30 +01:00
wstring
CMakeLists.txt [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
crt.cmake [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
libcntpr.cmake [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
moldname-msvcrt.def
msvcrtex.cmake [CMAKE] Replace custom functions to built-in ones 2020-04-16 15:59:38 +03:00
oldnames-msvcrt.S
oldnames.cmake
precomp.h
README.txt

Big chunks of this CRT library are taken from Wine's msvcrt implementation,
you can find a list of synced files in README.WINE file.

Notes:
1. When syncing, omit MSVCRT_ prefix where possible, Wine has to keep this
because they are linking with *both* original crt, and ms crt implementation.
ReactOS has the only CRT, so no need to make distinct functions.
2. ReactOS compiles two versions of the CRT library, one for usermode
(called just "crt"), and one version for kernelmode usage (called "libcntpr").
In order to separate the code, you can use #ifdef _LIBCNT_ for libcntpr code.