reactos/reactos/lib/rtl
Alex Ionescu 46794424c7 Enable PCH for rtl
svn path=/trunk/; revision=15997
2005-06-17 17:22:12 +00:00
..
i386 strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
access.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
acl.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
bit.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
bitmap.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
bootdata.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
compress.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
dos8dot3.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
encode.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
env.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
error.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
exception.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
generictable.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
heap.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
image.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
largeint.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
luid.c Use W32API. 2005-06-17 07:57:37 +00:00
mem.c Use W32API. 2005-06-17 07:57:37 +00:00
network.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
nls.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
ppb.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
process.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
random.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
readme.txt SVN maintenance: Set eol style to native and add keywords 2005-05-05 20:52:14 +00:00
registry.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
rtl.h Use W32API. 2005-06-17 07:57:37 +00:00
rtl.xml Enable PCH for rtl 2005-06-17 17:22:12 +00:00
sd.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
security.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
sid.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
splaytree.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
thread.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
time.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
timezone.c strip whitespace from end of lines 2005-05-09 01:41:02 +00:00
unicode.c Use W32API. 2005-06-17 07:57:37 +00:00
unicodeprefix.c Make rtl use a single header. Helps for PCH and will help for the new Headers (no need to change each file) 2005-05-08 05:14:46 +00:00
version.c Use W32API. 2005-06-17 07:57:37 +00:00

RTL restrictions:

ExAllocatePool (and friends) must be used exclusively. RtlAllocateHeap (and friends) must NOT be used! ExAllocatePool (and friends) translate to RtlAllocateHeap (and friends) in ntdll\rtl\libsupp.c.

RtlEnterCriticalSection (and friends) must be used exclusively. ExAcquireFastMutex (and friends) must NOT be used! RtlEnterCriticalSection (and friends) translate to ExAcquireFastMutex (and friends) in ntoskrnl\rtl\libsupp.c. This means that RtlEnterCriticalSection (and friends) can NOT be used recursively in RTL. The reason for choosing RtlEnterCriticalSection (and friends) over ExAcquireFastMutex (and friends) is that the FAST_MUTEX struct is smaller than the RTL_CRITICAL_SECTION struct.