From cb9fb81c44a1c99059a2039bd9c2b3334d7ddebf Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 11 Aug 2004 21:03:11 +0000 Subject: [PATCH] Added Lock and Heap Info struc's. svn path=/trunk/; revision=10500 --- reactos/include/ntdll/rtl.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/reactos/include/ntdll/rtl.h b/reactos/include/ntdll/rtl.h index d0c2ac7b019..44a1e13728a 100644 --- a/reactos/include/ntdll/rtl.h +++ b/reactos/include/ntdll/rtl.h @@ -1,4 +1,4 @@ -/* $Id: rtl.h,v 1.47 2004/08/09 19:41:13 jimtabor Exp $ +/* $Id: rtl.h,v 1.48 2004/08/11 21:03:11 jimtabor Exp $ * */ @@ -92,6 +92,18 @@ typedef struct _DEBUG_LOCK_INFORMATION { } DEBUG_LOCK_INFORMATION, *PDEBUG_LOCK_INFORMATION; +typedef struct _LOCK_INFORMATION +{ + ULONG LockCount; + DEBUG_LOCK_INFORMATION LockEntry[1]; +} LOCK_INFORMATION, *PLOCK_INFORMATION; + +typedef struct _HEAP_INFORMATION +{ + ULONG HelpCount; + DEBUG_HEAP_INFORMATION HeapEntry[1]; +} HEAP_INFORMATION, *PHEAP_INFORMATION; + typedef struct _CRITICAL_SECTION_DEBUG {