monsdar / CxxProf

CxxProf is a manual instrumented Profiling library for C++. It's goal is to provide easy integration into existing projects with just as little overhead as possible. It should be easy to remove the profiling mechanism during compile and runtime from the code.
GNU General Public License v3.0
58 stars 5 forks source link

Provide microsec precision on Windows #27

Open monsdar opened 10 years ago

monsdar commented 10 years ago

We're currently using boost::date_time::microsec_clock which defaults to a precision of milliseconds on Windows. We should find a way to support microsec precision.

monsdar commented 9 years ago

Should be easy to implement by using Boost Chrono...