Files
reactos/reactos/lib/rtl
Alex Ionescu e71c1a192e - Implement remaining functions in rtl/i386/math_asm.S
- Fix some more build issues.

svn path=/trunk/; revision=19773
2005-11-30 08:15:13 +00:00
..
2005-11-28 23:43:40 +00:00
2005-11-28 23:43:40 +00:00
2005-11-28 23:21:24 +00:00
2005-11-27 18:24:32 +00:00
2005-11-27 18:24:32 +00:00
2005-11-23 04:31:58 +00:00
2005-11-09 02:17:18 +00:00
2005-11-22 00:50:12 +00:00
2005-11-22 00:50:12 +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.