reactos/lib/rtl
Amine Khaldi 121bde3b83 * Sync up to trunk HEAD (r62286).
svn path=/branches/ntvdm/; revision=62287
2014-02-22 10:50:51 +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 rev.61910 to get latest improvements and bugfixes. 2014-02-01 22:56:13 +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 up with trunk r61578. 2014-01-11 00:00:10 +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 * 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 up with trunk r61578. 2014-01-11 00:00:10 +00:00
message.c * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
network.c Sync to trunk revision 61757. 2014-01-22 22:56:41 +00:00
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 Sync up with trunk r61578. 2014-01-11 00:00:10 +00:00
propvar.c
random.c
rangelist.c
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 * Sync up to trunk head (r60691). 2013-10-17 11:19:05 +00:00
rxact.c Sync up with trunk r61578. 2014-01-11 00:00:10 +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 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.