Hello everyone !
I wrote judgement system for checking problems (with c# language and c++ compiler). The platform is Windows. I'm using "cygwin64" to compile c++ codes. I want to get help for getting memory size of compiled program. I dont know how to do this. Can anyone help me ?
if I knew which function stl using for allocating memory, maybe I would change content of it. and I would can count memory allocations.
can it be done with this method ?
Can anyone help me ?
Since you're using C#, you can use property
PeakVirtualMemorySize64
of classSystem.Diagnostics.Process
.Thank you so much :)
You may find that post useful.
Thanks :)