reactos/lib/rtl
Hermès Bélusca-Maïto bb519801e2 - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...)
- Include only the necessary headers in csrss/csrsrv/basesrv/consrv/winsrv.

svn path=/branches/ros-csrss/; revision=58249
2013-01-28 22:45:53 +00:00
..
amd64
arm
i386 - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
powerpc
access.c
acl.c
actctx.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
assert.c
atom.c
avlsupp.c
avltable.c
bitmap.c
bootdata.c
byteswap.c
CMakeLists.txt - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
compress.c
condvar.c
crc32.c
critical.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
dbgbuffer.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
debug.c
dos8dot3.c
encode.c
env.c
error.c
exception.c
generictable.c
handle.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
heap.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
heap.h - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
heapdbg.c
heappage.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
heapuser.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
image.c
interlck.c
largeint.c
luid.c
mem.c
message.c
network.c
nls.c
path.c
ppb.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
priv.c
process.c
propvar.c
random.c
rangelist.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
readme.txt
registry.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
res.c
resource.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
rtl.h - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
rtlavl.h
rtlp.h
sd.c
security.c
sid.c
slist.c
splaytree.c
srw.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
thread.c
time.c
timerqueue.c
timezone.c Sync with trunk r58151 to bring the latest changes from Amine and Timo. 2013-01-09 20:12:23 +00:00
unicode.c - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
unicodeprefix.c
vectoreh.c
version.c Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
wait.c
workitem.c Sync with trunk r58033. 2012-12-28 23:37:33 +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.