Files
reactos/reactos/lib/rtl
Timo Kreuzer e7f8fba710 [RTL}
Replace RtlMoveMemory x86 asm code with the code from CRT's memmove, which is better. Now we can close bug #1941

svn path=/trunk/; revision=50116
2010-12-23 19:11:19 +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
2010-12-15 20:03:43 +00:00
2010-02-26 22:57:55 +00:00
2010-02-26 22:57:55 +00:00
2010-08-01 16:34:22 +00:00
2010-10-07 19:58:04 +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
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-12-10 09:33:20 +00:00
2010-10-15 13:16:48 +00:00
2010-10-15 13:16:48 +00:00
2010-12-22 13:33:09 +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-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
2010-02-26 22:57:55 +00:00
2010-11-05 22:21:36 +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
2010-11-05 22:21:36 +00:00
2010-02-26 22:57:55 +00:00
2010-11-05 22:21: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-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.