Files
reactos/lib/rtl
David Quintana 8db8073cbb Sync with trunk r63270.
svn path=/branches/shell-experiments/; revision=63271
2014-05-13 12:11:12 +00:00
..
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-05-13 12:11:12 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-04-15 23:01:15 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-04-15 23:01:15 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-05-06 15:51:24 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-05-06 15:51:24 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-05-13 12:11:12 +00:00
2014-04-15 23:01:15 +00:00
2014-02-02 19:37:27 +00:00
2014-04-15 23:01:15 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-04-15 23:01:15 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-05-06 15:51:24 +00:00
2014-05-13 12:11:12 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +00:00
2014-02-02 19:37:27 +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.