reactos/lib/rtl
Hermès Bélusca-Maïto 840ea98cba Synchronize with trunk r58457.
svn path=/branches/ros-csrss/; revision=58458
2013-03-10 01:01:36 +00:00
..
amd64
arm
i386
powerpc
access.c
acl.c
actctx.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
assert.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
atom.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
avlsupp.c
avltable.c
bitmap.c
bootdata.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
byteswap.c
CMakeLists.txt
compress.c
condvar.c
crc32.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
critical.c
dbgbuffer.c
debug.c
dos8dot3.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
encode.c
env.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
error.c
exception.c
generictable.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
handle.c
heap.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
heap.h
heapdbg.c
heappage.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
heapuser.c
image.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
interlck.c
largeint.c
luid.c
mem.c
message.c
network.c
nls.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
path.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
ppb.c
priv.c
process.c
propvar.c
random.c
rangelist.c
readme.txt Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
registry.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
res.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
resource.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
rtl.h
rtlavl.h
rtlp.h
sd.c
security.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
sid.c
slist.c
splaytree.c
srw.c
thread.c
time.c
timerqueue.c
timezone.c
unicode.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
unicodeprefix.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +00:00
vectoreh.c
version.c
wait.c
workitem.c Synchronize with trunk r58457. 2013-03-10 01:01:36 +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.