reactos/lib/rtl
Aleksandar Andrejevic 5eb7c07bb8 Sync with trunk for console graphics palettes.
svn path=/branches/ntvdm/; revision=60735
2013-10-23 00:26:50 +00:00
..
amd64
arm
i386
powerpc
access.c
acl.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
actctx.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
assert.c
atom.c
avlsupp.c
avltable.c
bitmap.c
bitmap64.c
bootdata.c
byteswap.c
CMakeLists.txt Sync with trunk for console graphics palettes. 2013-10-23 00:26:50 +00:00
compress.c
condvar.c
crc32.c
critical.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
dbgbuffer.c
debug.c
dos8dot3.c
encode.c
env.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
error.c
exception.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
generictable.c
handle.c
heap.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
heap.h
heapdbg.c
heappage.c
heapuser.c
image.c
interlck.c
largeint.c
luid.c
mem.c
memstream.c Sync with trunk for console graphics palettes. 2013-10-23 00:26:50 +00:00
message.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
network.c
nls.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
path.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
ppb.c
priv.c
process.c Synchronize with trunk revision 59781. 2013-08-19 18:55:28 +00:00
propvar.c
random.c
rangelist.c
readme.txt
registry.c
res.c
resource.c
rtl.h
rtlavl.h
rtlp.h * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
sd.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
security.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
sid.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
slist.c
splaytree.c
srw.c
thread.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
time.c
timerqueue.c
timezone.c
unicode.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +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.