Files
reactos/reactos/lib/rtl
Timo Kreuzer 0100d8de0c [NTOSKRNL] Handle some more KeFeatureFlags in amd64/cpu.c and set RtlpUse16ByteSLists
[NTDLL] Set RtlpUse16ByteSLists
[RTL] Make use of RtlpUse16ByteSLists in x64 Interlocked SList functions

svn path=/trunk/; revision=67523
2015-05-02 22:20:59 +00:00
..
2015-04-19 10:03:21 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-04-10 08:18:00 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-03-18 14:41:34 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-03-29 14:10:20 +00:00
2015-02-17 15:08:47 +00:00
2015-02-01 13:33:06 +00:00
2015-04-10 19:45:17 +00:00
2015-05-02 22:20:38 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-02-01 13:33:06 +00:00
2015-04-10 08:38:05 +00:00
2015-02-07 13:24:29 +00:00
2015-04-10 19:21:22 +00:00
2015-05-02 22:20:38 +00:00
2015-03-16 03:14:16 +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.