Free Memory

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for some documentation or info on when memory allocated by
malloc or new and not expressly freed by the program is freed back to the
system in terms of an application, it's dll modules, and their functions.
 
Tom said:
I am looking for some documentation or info on when memory allocated
by malloc or new and not expressly freed by the program is freed back
to the system in terms of an application, it's dll modules, and their
functions.

When the program terminates the memory will be reclaimed. Destructors will
not run.

-cd
 
Back
Top