Files
reactos/lib/rtl
Sylvain Petreolle e2b7eacdd5 [CMAKE]
Sync trunk up to r50477.

svn path=/branches/cmake-bringup/; revision=50504
2011-01-26 22:19:12 +00:00
..
2010-11-15 01:03:14 +00:00
2010-07-24 18:52:44 +00:00
2011-01-03 00:33:31 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2011-01-03 00:33:31 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-09-20 17:27:52 +00:00
2010-10-23 22:14:59 +00:00
2011-01-26 22:19:12 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-10-23 22:14:59 +00:00
2010-11-21 10:05:20 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2011-01-26 22:19:12 +00:00
2010-10-23 22:14:59 +00:00
2010-10-23 22:14:59 +00:00
2011-01-03 00:33:31 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-10-23 22:14:59 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2011-01-25 18:48:26 +00:00
2010-07-24 18:52:44 +00:00
2010-10-23 22:14:59 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2011-01-26 22:19:12 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-11-21 10:05:20 +00:00
2010-07-24 18:52:44 +00:00
2010-07-24 18:52:44 +00:00
2010-11-21 10:05:20 +00:00
2010-07-24 18:52:44 +00:00
2010-11-21 10:05:20 +00:00
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.