Блог пользователя CWD4RKC0D3R

Автор CWD4RKC0D3R, 9 лет назад, По-английски

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 ?

  • Проголосовать: нравится
  • +8
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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 ?

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone help me ?

»
9 лет назад, # |
  Проголосовать: нравится +16 Проголосовать: не нравится

Since you're using C#, you can use property PeakVirtualMemorySize64 of class System.Diagnostics.Process.

»
9 лет назад, # |
  Проголосовать: нравится +16 Проголосовать: не нравится

You may find that post useful.