Memory usage of my application

R

RLN

I have client/Server Application . It is perfectly working. no issues. memory
leaks also very less. because it checked with memory checking tool like
boundschecker etc.
But In task manager my application is eating too much of memory usage. What
is the reason ? Is still memory leak in my applicaitonor any issue with my
applicaiton? Please give the solution for this.
 
A

AliR \(VC++ MVP\)

There can be many many different reasons for this. You really haven't
described how your program deals with memory allocation. Does it allocate
new chunks as it is running, what action causes your program to allocate
memory? Are you freeing memory after you are done using it, or do you wait
a free it all when the program exits?

AliR.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top