diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-30 15:51:19 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-30 15:51:19 +0000 |
commit | 52cbf511867518146d099147e99460321f9525ca (patch) | |
tree | 819a049c04a91d4747661cc2d591a939c465e662 /win32/vmem.h | |
parent | 0b3bfb33b5f58153bd8abb3ff3f0d45be3c8e193 (diff) | |
download | perl-52cbf511867518146d099147e99460321f9525ca.tar.gz |
Sarathy thinks undoing C++ comments from C++ files
is a bit too zealous.
p4raw-id: //depot/perl@13951
Diffstat (limited to 'win32/vmem.h')
-rw-r--r-- | win32/vmem.h | 20 |
1 files changed, 10 insertions, 10 deletions
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(); |