Files
reactos/reactos/lib/rtl
Jérôme Gardou 66aecb94b7 [RTL]
- do not use RtlpCoalesceFreeBlocks to reinsert a block resulting from a split.
This bad idea was mine, introduced in r51757

svn path=/trunk/; revision=52340
2011-06-18 14:47:51 +00:00
..
2010-11-27 22:12:15 +00:00
2010-02-26 22:57:55 +00:00
2010-12-23 19:11:19 +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
2011-04-14 12:20:47 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-02-17 16:52:06 +00:00
2011-02-21 13:33:13 +00:00
2010-08-01 16:34:22 +00:00
2010-10-07 19:58:04 +00:00
2011-06-02 12:18:22 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-09-25 21:20:54 +00:00
2011-03-04 03:42:38 +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
2011-06-18 14:47:51 +00:00
2011-05-15 12:20:44 +00:00
2011-02-16 13:09:18 +00:00
2011-02-25 14:13:10 +00:00
2011-03-29 11:00:34 +00:00
2010-02-26 22:57:55 +00:00
2011-02-10 11:47:17 +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
2011-02-20 19:28:34 +00:00
2011-03-02 11:42:30 +00:00
2010-10-17 11:12:54 +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
2011-02-10 11:47:17 +00:00
2011-02-10 13:24:39 +00:00
2010-10-05 19:33:42 +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
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2011-02-21 09:12:43 +00:00
2011-02-10 11:47:17 +00:00
2010-02-26 22:57:55 +00:00
2011-02-10 11:47:17 +00:00
2011-06-15 13:33:48 +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.