00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Paul Breslin 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: UT_ArenaInfo.h 00015 * 00016 * COMMENTS: 00017 * This is a simple interface to mallinfo or some alternative 00018 * if this is not available. 00019 */ 00020 00021 #ifndef __UT_ArenaInfo__ 00022 #define __UT_ArenaInfo__ 00023 00024 #include "UT_API.h" 00025 #include <stddef.h> 00026 #include <iostream.h> 00027 00028 class UT_API UT_ArenaInfo 00029 { 00030 public: 00031 size_t arenaSize(); 00032 size_t totalInUse(); 00033 void outputUsage(ostream &os); 00034 00035 protected: 00036 00037 private: 00038 }; 00039 00040 #endif /* __UT_ArenaInfo__ */
1.5.9