I want to calculate the time in milliseconds taken by the execution of some part of my program. I've been looking online, but there's not much info on this topic. Any of you know how to do this?
|
1
|
|||||
|
|
|
Best way to answer is with an example:
|
||
|
|
|
|
Another option ( at least on some UNIX ) is clock_gettime and related functions. These allow access to various realtime clocks and you can select one of the higher resolution ones and throw away the resolution you don't need. |
||
|
|
|
The
|
||
|
|
|
On Windows, you can just do this:
Not the most general/elegant solution, but nice and quick when you need it. |
||
|
|
|
|
C libraries have a function to let you get the system time. You can calculate elapsed time after you capture the start and stop times. The function is called gettimeofday() and you can look at the man page to find out what to include and how to use it. |
|||
|
|
