From 52cbf511867518146d099147e99460321f9525ca Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sun, 30 Dec 2001 15:51:19 +0000 Subject: Sarathy thinks undoing C++ comments from C++ files is a bit too zealous. p4raw-id: //depot/perl@13951 --- win32/vmem.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'win32/vmem.h') diff --git a/win32/vmem.h b/win32/vmem.h index 2727b5cb7e..a0e5eba070 100644 --- a/win32/vmem.h +++ b/win32/vmem.h @@ -134,21 +134,21 @@ protected: void* Expand(void* block, size_t size); void WalkHeap(void); - HANDLE m_hHeap; /* memory heap for this script */ - char m_FreeDummy[minAllocSize]; /* dummy free block */ - PBLOCK m_pFreeList; /* pointer to first block on free list */ - PBLOCK m_pRover; /* roving pointer into the free list */ - HeapRec m_heaps[maxHeaps]; /* list of all non-contiguous heap areas */ - int m_nHeaps; /* no. of heaps in m_heaps */ - long m_lAllocSize; /* current alloc size */ - long m_lRefCount; /* number of current users */ - CRITICAL_SECTION m_cs; /* access lock */ + HANDLE m_hHeap; // memory heap for this script + char m_FreeDummy[minAllocSize]; // dummy free block + PBLOCK m_pFreeList; // pointer to first block on free list + PBLOCK m_pRover; // roving pointer into the free list + HeapRec m_heaps[maxHeaps]; // list of all non-contiguous heap areas + int m_nHeaps; // no. of heaps in m_heaps + long m_lAllocSize; // current alloc size + long m_lRefCount; // number of current users + CRITICAL_SECTION m_cs; // access lock #ifdef _DEBUG_MEM FILE* m_pLog; #endif }; -/* #define _DEBUG_MEM */ +// #define _DEBUG_MEM #ifdef _DEBUG_MEM #define ASSERT(f) if(!(f)) DebugBreak(); -- cgit v1.2.1