reactos/lib/rtl
Amine Khaldi b5250fa114 [CMAKE]
* Sync with trunk r51339.
* Move the static lib creation command from the toolchain file to gcc.cmake

svn path=/branches/cmake-bringup/; revision=51340
2011-04-14 12:50:32 +00:00
..
amd64
arm
i386 [CMAKE] 2011-01-03 00:33:31 +00:00
powerpc
access.c
acl.c
actctx.c [CMAKE] 2011-04-14 12:50:32 +00:00
assert.c
atom.c
avlsupp.c [CMAKE] 2011-03-26 13:00:21 +00:00
avltable.c [CMAKE] 2011-03-26 13:00:21 +00:00
bitmap.c
bootdata.c
CMakeLists.txt [CMAKE] 2011-03-26 13:00:21 +00:00
compress.c
condvar.c
crc32.c
critical.c [CMAKE] 2011-03-26 13:00:21 +00:00
dbgbuffer.c
debug.c
dos8dot3.c
encode.c
env.c
error.c
exception.c
generictable.c
handle.c
heap.c [CMAKE] 2011-03-26 23:14:25 +00:00
heap.h [CMAKE] 2011-03-26 13:00:21 +00:00
heapdbg.c [CMAKE] 2011-03-26 13:00:21 +00:00
heappage.c [CMAKE] 2011-03-26 13:00:21 +00:00
image.c [CMAKE] 2011-04-06 16:00:24 +00:00
interlck.c
largeint.c
luid.c
mem.c
memgen.c
message.c
network.c
nls.c [CMAKE] 2011-03-26 13:00:21 +00:00
path.c [CMAKE] 2011-03-26 13:00:21 +00:00
ppb.c
process.c
propvar.c
qsort.c
random.c
rangelist.c
readme.txt
registry.c
res.c
resource.c
rtl.h [RTL] 2011-01-25 18:48:26 +00:00
rtlavl.h
rtlp.h
sd.c
security.c
sid.c
slist.c
splaytree.c
srw.c [RTL] 2011-01-27 23:03:01 +00:00
thread.c
time.c
timerqueue.c [RTL] 2010-11-21 10:05:20 +00:00
timezone.c
unicode.c [CMAKE] 2011-03-26 13:00:21 +00:00
unicodeprefix.c
vectoreh.c [RTL] 2010-11-21 10:05:20 +00:00
version.c
wait.c [RTL] 2010-11-21 10:05:20 +00:00
workitem.c [RTL] 2010-11-21 10:05:20 +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.