reactos/lib/rtl
Hermès Bélusca-Maïto 9919d4fa10 Sync to trunk r65566.
svn path=/branches/condrv_restructure/; revision=65567
2014-12-05 21:20:35 +00:00
..
amd64
arm
i386
powerpc
access.c
acl.c
actctx.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
assert.c
atom.c
avlsupp.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
avltable.c
bitmap.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
bitmap64.c
bootdata.c
byteswap.c
CMakeLists.txt
compress.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
condvar.c
crc32.c
critical.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
dbgbuffer.c
debug.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
dos8dot3.c
encode.c
env.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
error.c Sync with trunk r63743. 2014-07-27 20:52:13 +00:00
exception.c Sync with trunk r63743. 2014-07-27 20:52:13 +00:00
generictable.c
handle.c
heap.c
heap.h
heapdbg.c
heappage.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
heapuser.c
image.c
interlck.c
largeint.c
luid.c
mem.c
memstream.c
message.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
network.c
nls.c
path.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
ppb.c
priv.c
process.c
propvar.c
random.c
rangelist.c
readme.txt
registry.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
res.c
resource.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
rtl.h
rtlavl.h
rtlp.h Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
rxact.c
sd.c Sync with trunk r63793. 2014-08-01 18:39:52 +00:00
security.c
sid.c
slist.c
splaytree.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
srw.c
thread.c
time.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
timerqueue.c
timezone.c
unicode.c Sync to trunk r65566. 2014-12-05 21:20:35 +00:00
unicodeprefix.c
vectoreh.c
version.c
wait.c
workitem.c

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.