mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NTDLL][RTL] Move RtlpTimeoutDisable definition to the RTL (#4089)
This commit is contained in:
parent
6f89a48349
commit
dff55c9d33
2 changed files with 3 additions and 1 deletions
|
@ -55,7 +55,7 @@ ULONG LdrpNumberOfTlsEntries;
|
|||
ULONG LdrpNumberOfProcessors;
|
||||
PVOID NtDllBase;
|
||||
extern LARGE_INTEGER RtlpTimeout;
|
||||
BOOLEAN RtlpTimeoutDisable;
|
||||
extern BOOLEAN RtlpTimeoutDisable;
|
||||
PVOID LdrpHeap;
|
||||
LIST_ENTRY LdrpHashTable[LDR_HASH_TABLE_ENTRIES];
|
||||
LIST_ENTRY LdrpDllNotificationList;
|
||||
|
|
|
@ -21,7 +21,9 @@ static LIST_ENTRY RtlCriticalSectionList = {&RtlCriticalSectionList, &RtlCritica
|
|||
static BOOLEAN RtlpCritSectInitialized = FALSE;
|
||||
static RTL_CRITICAL_SECTION_DEBUG RtlpStaticDebugInfo[MAX_STATIC_CS_DEBUG_OBJECTS];
|
||||
static BOOLEAN RtlpDebugInfoFreeList[MAX_STATIC_CS_DEBUG_OBJECTS];
|
||||
|
||||
LARGE_INTEGER RtlpTimeout;
|
||||
BOOLEAN RtlpTimeoutDisable;
|
||||
|
||||
extern BOOLEAN LdrpShutdownInProgress;
|
||||
extern HANDLE LdrpShutdownThreadId;
|
||||
|
|
Loading…
Reference in a new issue