Files
reactos/reactos/lib/rtl
Amine Khaldi cd21d25fc7 [LIB/RTL]
- Get rid of some unneeded assignment, cast and a variable.

svn path=/trunk/; revision=48005
2010-07-12 14:50:31 +00:00
..
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-06-06 07:21:53 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-06-26 09:49:31 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-07-12 14:50:31 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-12 23:16:29 +00:00
2010-07-12 14:50:31 +00:00
2010-02-26 22:57:55 +00:00
2010-05-29 21:15:48 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-30 03:26:35 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-28 23:06:36 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-03-28 19:46:29 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +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.