reactos/lib/rtl
Amine Khaldi 6c0c23cb53 [CMAKE]
- Sync with trunk head (r50270)
- This also reverts r49298.

svn path=/branches/cmake-bringup/; revision=50271
2011-01-03 00:33:31 +00:00
..
amd64 [RTL] 2010-11-15 01:03:14 +00:00
arm
i386 [CMAKE] 2011-01-03 00:33:31 +00:00
powerpc
access.c
acl.c
actctx.c [CMAKE] 2011-01-03 00:33:31 +00:00
assert.c
atom.c
avlsupp.c
avltable.c
bitmap.c
bootdata.c [CMAKE] 2010-10-23 22:14:59 +00:00
CMakeLists.txt [RTL] 2010-11-19 18:55:26 +00:00
compress.c
condvar.c
crc32.c [CMAKE] 2010-10-23 22:14:59 +00:00
critical.c [RTL] 2010-11-21 10:05:20 +00:00
dbgbuffer.c
debug.c
dos8dot3.c
encode.c
env.c
error.c
exception.c
generictable.c
handle.c
heap.c [CMAKE] 2011-01-03 00:33:31 +00:00
heap.h [CMAKE] 2010-10-23 22:14:59 +00:00
heapdbg.c [CMAKE] 2010-10-23 22:14:59 +00:00
image.c [CMAKE] 2011-01-03 00:33:31 +00:00
interlck.c
largeint.c
luid.c
mem.c
memgen.c
message.c
network.c
nls.c
path.c
ppb.c [CMAKE] 2010-10-23 22:14:59 +00:00
process.c
propvar.c
qsort.c
random.c
rangelist.c
readme.txt
registry.c
res.c
resource.c
rtl.h [RTL] 2010-11-21 14:40:57 +00:00
rtlavl.h
rtlp.h [CMAKE] 2010-10-23 22:14:59 +00:00
sd.c
security.c
sid.c
slist.c
splaytree.c
sprintf.c [CMAKE] 2010-11-16 13:43:39 +00:00
srw.c [RTL] 2010-11-21 10:05:20 +00:00
swprintf.c [CMAKE] 2010-11-16 13:43:39 +00:00
thread.c
time.c
timerqueue.c [RTL] 2010-11-21 10:05:20 +00:00
timezone.c
unicode.c
unicodeprefix.c
vectoreh.c [RTL] 2010-11-21 10:05:20 +00:00
version.c
wait.c [RTL] 2010-11-21 10:05:20 +00:00
workitem.c [RTL] 2010-11-21 10:05:20 +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.