oldSkool
oldSkool

Reputation: 1232

C++/Win32 API Performance profiling / timing

I am using Visual Studio 2008 at the moment. I would like to know if there is a way I could test the performance of my memory management library against the Win32 memory management API using free tools, or using code.

Upvotes: 0

Views: 607

Answers (1)

Martin v. Löwis
Martin v. Löwis

Reputation: 127457

There are many malloc benchmarks out there, for example this one.

Upvotes: 1

Related Questions