Re: [GD-General] Memory manager question
Brought to you by:
vexxed72
From: Noel L. <nl...@co...> - 2004-12-04 16:43:23
|
On a console, just check periodically that what you think is the total amount of memory allocated matches up with the amount of memory allocated reported by the system. On a PC, I imagine there are similar functions to return the amount of memory allocated by a particular process. --Noel Games from Within http://www.gamesfromwithin.com On Wednesday 01 December 2004 11:35, Carl Bevil wrote: > I'm in the process of installing a memory manager into our code, mainly > by overriding new and delete. One of the uncertainties I'm bumping up > against is how to know if there are parts of our code that are not using > the memory manager (allocating "unmanaged" memory). > > Has anyone come up with a good way of detecting "unmanaged" memory > allocation? If not, anyone have tips on minimizing this possiblity? > > Thanks! > > Carl |