michaelkrauklis
Programmer
I have the following problem. My program hangs terribly once it has finished execution. The longer the program executes the longer it hangs at the end. Could a memory leak cause this problem?? If not then what's going on?
That is the end of my main function. The standardExecute function completes, the program prints out "back in main" and then the CPU spikes to 100% and just sits there perportionally to how long the program has been running. If the program only ran for five minutes it hangs for about a minute. Then finishes execution. I am still in debug mode... might that have anything to do with this? MYenigmaSELF:-9
myenigmaself@yahoo.com
Code:
...
standardExecute("session");
std::cout<<"back in main"<<endl;
/*end testing*/
return nRetCode;
}
myenigmaself@yahoo.com