Files
reactos/reactos/lib/rtl
Hermès Bélusca-Maïto eea6067270 [RTL]
Implement RtlDeleteNoSplay which is really just a copy/paste of RtlDelete, but without splaying the tree after deletion of the node. Needed by the filter driver fltmgr.sys. Dedicated to Mr. V ;)

svn path=/trunk/; revision=64818
2014-10-18 23:51:35 +00:00
..
2012-06-22 10:26:00 +00:00
2013-01-14 09:35:50 +00:00
2012-10-07 21:36:50 +00:00
2013-10-23 19:38:49 +00:00
2014-09-09 12:06:01 +00:00
2013-02-16 17:21:34 +00:00
2013-03-05 08:38:18 +00:00
2014-10-11 12:40:24 +00:00
2013-05-05 09:02:36 +00:00
2014-05-25 10:36:47 +00:00
2013-06-02 19:25:38 +00:00
2011-10-12 21:11:02 +00:00
2014-02-09 21:43:42 +00:00
2013-02-16 17:21:34 +00:00
2014-10-12 20:45:32 +00:00
2013-07-22 13:45:56 +00:00
2014-01-04 13:53:47 +00:00
2013-02-16 18:46:36 +00:00
2014-07-23 12:46:47 +00:00
2014-07-05 19:17:16 +00:00
2013-04-25 14:15:10 +00:00
2012-12-18 10:10:34 +00:00
2014-04-27 12:45:51 +00:00
2013-01-14 09:35:50 +00:00
2011-12-17 08:22:04 +00:00
2013-02-16 17:21:34 +00:00
2013-01-14 09:35:50 +00:00
2014-04-27 12:45:51 +00:00
2011-08-19 21:14:11 +00:00
2013-05-05 09:02:36 +00:00
2014-01-04 13:53:47 +00:00
2014-01-19 14:56:13 +00:00
2014-05-11 23:11:16 +00:00
2014-09-09 12:06:01 +00:00
2012-12-17 12:06:14 +00:00
2014-04-05 10:02:32 +00:00
2014-01-07 20:23:44 +00:00
2012-06-24 16:23:28 +00:00
2012-06-24 01:10:58 +00:00
2014-04-05 12:44:27 +00:00
2014-09-18 10:39:54 +00:00
2013-11-17 14:21:08 +00:00
2013-02-16 17:21:34 +00:00
2014-01-04 13:53:47 +00:00
2014-04-27 12:34:39 +00:00
2014-01-07 21:26:06 +00:00
2014-07-29 20:29:14 +00:00
2013-08-31 17:34:37 +00:00
2012-02-10 17:36:11 +00:00
2014-10-18 23:51:35 +00:00
2014-01-07 20:23:44 +00:00
2012-09-19 12:20:39 +00:00
2013-01-06 20:52:02 +00:00
2013-11-05 20:40:01 +00:00
2013-02-16 17:21:34 +00:00
2012-12-18 21:15:24 +00:00
2012-09-19 12:20:39 +00:00
2013-02-16 17:21:34 +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.