Files
reactos/reactos/lib/rtl
Timo Kreuzer 0d149baf29 [RTL]
Merge changes to rtl from cmake branch. Mostly use portable interlocked functions

svn path=/trunk/; revision=50648
2011-02-10 11:47:17 +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-02-10 11:47:17 +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
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
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-02-08 06:06:33 +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
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-07 23:23:33 +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
2011-02-10 11:47:17 +00:00
2011-01-11 13:13:47 +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-07 23:23:33 +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-02-10 11:47:17 +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.