diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2001-12-29 21:38:59 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-29 20:17:55 +0000 |
commit | cb69f87a007debfba124ee7db6ef7f6a2ac42df7 (patch) | |
tree | bbebb41aaeae6ba3d9971476a732fd1eb34f8792 /win32/vmem.h | |
parent | 9250d75a95295dd09aed581838f0b619792911cd (diff) | |
download | perl-cb69f87a007debfba124ee7db6ef7f6a2ac42df7.tar.gz |
from the non-ANSI comment police (was: it won't compile on win32)
Message-Id: <20011229203646.24CF.H.M.BRAND@hccnet.nl>
(NetWare tree not touched because it's very //)
p4raw-id: //depot/perl@13939
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 a0e5eba070..2727b5cb7e 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(); |