tecknophreak
02-24-2004, 09:42 PM
If I'm running my program and I see the used memory increase by 4k(a page size) and the cached memory increase likewise, what would cause this?
Is it possibly using new and not delete? I'm pretty sure I'm doing this pretty regularly since it was burned into my brain in my C++ classes.
Is it using something like:
while () {
something = 5;
while (something) {
int x(something);
--something;
}
}
It's got me baffled!! :confused:
Is it possibly using new and not delete? I'm pretty sure I'm doing this pretty regularly since it was burned into my brain in my C++ classes.
Is it using something like:
while () {
something = 5;
while (something) {
int x(something);
--something;
}
}
It's got me baffled!! :confused: