reactos/lib/rtl
Aleksandar Andrejevic e2dbefc310 Sync with trunk.
svn path=/branches/ntvdm/; revision=62849
2014-04-21 01:45:58 +00:00
..
amd64
arm
i386
powerpc
access.c
acl.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
actctx.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
assert.c
atom.c
avlsupp.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
avltable.c
bitmap.c Sync with trunk. 2014-04-21 01:45:58 +00:00
bitmap64.c
bootdata.c
byteswap.c
CMakeLists.txt * Sync up to trunk HEAD (r62286). 2014-02-22 10:50:51 +00:00
compress.c
condvar.c
crc32.c
critical.c Sync with trunk. 2014-04-21 01:45:58 +00:00
dbgbuffer.c
debug.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
dos8dot3.c
encode.c
env.c
error.c
exception.c
generictable.c
handle.c
heap.c
heap.h
heapdbg.c
heappage.c
heapuser.c
image.c
interlck.c
largeint.c
luid.c
mem.c
memstream.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
message.c
network.c Sync to trunk revision 61757. 2014-01-22 22:56:41 +00:00
nls.c
path.c Sync with trunk. 2014-04-21 01:45:58 +00:00
ppb.c
priv.c Sync with trunk. 2014-04-21 01:45:58 +00:00
process.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
propvar.c
random.c
rangelist.c Sync with trunk. 2014-04-21 01:45:58 +00:00
readme.txt
registry.c Sync to trunk revision 61757. 2014-01-22 22:56:41 +00:00
res.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
resource.c
rtl.h Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
rtlavl.h
rtlp.h
rxact.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
sd.c
security.c
sid.c
slist.c
splaytree.c
srw.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
thread.c Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
time.c
timerqueue.c
timezone.c
unicode.c Sync up with trunk r61578. 2014-01-11 00:00:10 +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.