prosseek
prosseek

Reputation: 190769

Is there memory usage profiler available?

For time profiler for XYZ, I can just run 'time XYZ', or if I have the source code in C/C++, I even can use gprof to get profiled results.

Is there any similar tool for memory usage?

I mainly use Mac OS X, but Linux and Windows7 for regular basis, so cross platform would be better.

Upvotes: 2

Views: 442

Answers (2)

Chris K
Chris K

Reputation: 12341

For Windows, there is Rational Purify from IBM. Valgrind for Linux or Mac.

For Java you can use the Eclipse TPTP project, or the fabulous YourKit compiler.

Upvotes: 3

jk.
jk.

Reputation: 14004

for what platform? for linux there is http://valgrind.org/ (works for any native binary) for java .net or mono there are framework specific memory profilers

Upvotes: 2

Related Questions