mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
Added Lock and Heap Info struc's.
svn path=/trunk/; revision=10500
This commit is contained in:
parent
4e8265f044
commit
cb9fb81c44
1 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue