reactos/sdk/lib/rtl
2025-07-10 14:57:09 +03:00
..
amd64 [RTL] Implement RtlGetUnwindContext 2025-07-10 14:57:09 +03:00
arm [RTL] x64/ARM: Alias RtlpBreakWithStatusInstruction to DbgBreakPointWithStatus; x64: fix a bug. 2025-04-19 20:01:08 +02:00
i386 [NTOS][RTL] Remove unused deprecated ReactOS-only DbgBreakPointNoBugCheck() 2025-04-19 20:01:06 +02:00
access.c
acl.c
actctx.c [RTL] actctx.c: Restore wine tracing 2024-11-05 10:54:21 +02:00
appverifier.c
assert.c [RTL][KERNEL32][ROSAUTOTEST] Disable debug prompts during autotest 2024-09-16 10:10:55 +03:00
atom.c
avlsupp.c
avltable.c
bitmap.c
bitmap64.c
bootdata.c
byteswap.c
CMakeLists.txt [RTL] Partial revert of Wine timer code in thread pooling (#8229) 2025-07-08 12:05:53 -07:00
compress.c
condvar.c
crc32.c
critical.c [RTL] Change comment to indicate a hack 2025-03-25 16:23:39 +01:00
dbgbuffer.c
debug.c [RTL] Fix overflow case in vDbgPrintExWithPrefixInternal 2024-08-30 06:38:29 +03:00
dos8dot3.c
encode.c
env.c
error.c
exception.c
generictable.c
handle.c
heap.c [REACTOS] Refresh old URLs (#7632) 2025-01-28 13:36:45 +09:00
heap.h
heapdbg.c [REACTOS] Add missing line breaks at end of file 2024-10-06 10:47:11 +03:00
heappage.c [RTL] Notify verifier when freeing the process page heap 2025-03-25 16:23:39 +01:00
heapuser.c
image.c
interlck.c
largeint.c
locale.c [RTL] Implement locale functions/tables 2025-03-25 09:55:17 +00:00
luid.c
mem.c
memstream.c
message.c
network.c [RTL] ntdll: Implement RtlIpv6StringToAddress(Ex)[AW] 2024-11-02 21:57:28 +01:00
nls.c
path.c [RTL][NTDLL_APITEST] Fix buffer overflow in RtlDosSearchPath_Ustr (#7698) 2025-02-05 21:17:11 +01:00
ppb.c
prefix.c
priv.c
process.c
propvar.c
random.c
rangelist.c
readme.txt
registry.c
res.c
resource.c
rtl.h [KERNEL32][ROSTESTS][SDK] Enable threadpooling 2025-01-26 23:30:59 -08:00
rtl_vista.h
rtlavl.h
rtlp.h
runonce.c
rxact.c
sd.c
security.c [RTL] Fix prototypes of RtlCreateUserSecurityObject and RtlCreateAndSetSD 2025-05-26 21:29:30 +02:00
sid.c
slist.c
splaytree.c
srw.c
sysvol.c
thread.c
threadpool.c [RTL] Partial revert of Wine timer code in thread pooling (#8229) 2025-07-08 12:05:53 -07:00
time.c
timerqueue.c [RTL] Partial revert of Wine timer code in thread pooling (#8229) 2025-07-08 12:05:53 -07:00
timezone.c
trace.c
unicode.c
unicodeprefix.c
utf8.c
vectoreh.c
version.c
wait.c [RTL] Partial revert of Wine timer code in thread pooling (#8229) 2025-07-08 12:05:53 -07:00
wine_debug.c [RTL] Add minimal wine debug support functions 2024-11-05 10:54:21 +02:00
workitem.c

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.