We have a memory leak in our application.
I have instrumented the application code such that every malloc (size and address), every realloc new size and address) and every free(address) is logged...
Hi,
Actually this question is not strictly .NET but relating to the .NET environment.
I have a library that efficiently implements heap management.
I want to use this library in my...
Hi,
I am writing a C console application in .NET 2003 IDE.
Is there any function to copy file(s)
I have included "direct.h" header file but it does not seem to support copying file.
I...
I had considered having another program which itself alllocates some memory and does nothing with it.
But the problem is this would actually allocate...
Hi,
IMO this depends on your OS. If your OS does write some machine id( if there exists one at all) then it is possible. Win and Linux both do not write any such information.
If you...
Hi,
Use memory for storing marices only if:
1. Efficiency is a big concern
2. Your matrix is of small dimensions and you do not have too many matrices to store.
...