Time stamp in the C programming language

后端 未结 9 1387
别那么骄傲
别那么骄傲 2020-12-08 04:48

How do I stamp two times t1 and t2 and get the difference in milliseconds in C?

相关标签:
9条回答
  • 2020-12-08 05:23

    If you want to find elapsed time, this method will work as long as you don't reboot the computer between the start and end.

    In Windows, use GetTickCount(). Here's how:

    DWORD dwStart = GetTickCount();
    ...
    ... process you want to measure elapsed time for
    ...
    DWORD dwElapsed = GetTickCount() - dwStart;
    

    dwElapsed is now the number of elapsed milliseconds.

    In Linux, use clock() and CLOCKS_PER_SEC to do about the same thing.

    If you need timestamps that last through reboots or across PCs (which would need quite good syncronization indeed), then use the other methods (gettimeofday()).

    Also, in Windows at least you can get much better than standard time resolution. Usually, if you called GetTickCount() in a tight loop, you'd see it jumping by 10-50 each time it changed. That's because of the time quantum used by the Windows thread scheduler. This is more or less the amount of time it gives each thread to run before switching to something else. If you do a:

    timeBeginPeriod(1);
    

    at the beginning of your program or process and a:

    timeEndPeriod(1);
    

    at the end, then the quantum will change to 1 ms, and you will get much better time resolution on the GetTickCount() call. However, this does make a subtle change to how your entire computer runs processes, so keep that in mind. However, Windows Media Player and many other things do this routinely anyway, so I don't worry too much about it.

    I'm sure there's probably some way to do the same in Linux (probably with much better control, or maybe with sub-millisecond quantums) but I haven't needed to do that yet in Linux.

    0 讨论(0)
  • 2020-12-08 05:25

    how about this solution? I didn't see anything like this in my search. I am trying to avoid division and make solution simpler.

       struct timeval cur_time1, cur_time2, tdiff;
    
       gettimeofday(&cur_time1,NULL);
       sleep(1);
       gettimeofday(&cur_time2,NULL);
    
       tdiff.tv_sec = cur_time2.tv_sec - cur_time1.tv_sec;
       tdiff.tv_usec = cur_time2.tv_usec + (1000000 - cur_time1.tv_usec);
    
       while(tdiff.tv_usec > 1000000)
       {
          tdiff.tv_sec++;
          tdiff.tv_usec -= 1000000;
          printf("updated tdiff tv_sec:%ld tv_usec:%ld\n",tdiff.tv_sec, tdiff.tv_usec);
       }
    
       printf("end tdiff tv_sec:%ld tv_usec:%ld\n",tdiff.tv_sec, tdiff.tv_usec);
    
    0 讨论(0)
  • 2020-12-08 05:34

    U can try routines in c time library (time.h). Plus take a look at the clock() in the same lib. It gives the clock ticks since the prog has started. But you can save its value before the operation you want to concentrate on, and then after that operation capture the cliock ticks again and find the difference between then to get the time difference.

    0 讨论(0)
  • 2020-12-08 05:35

    This will give you the time in seconds + microseconds

    #include <sys/time.h>
    struct timeval tv;
    gettimeofday(&tv,NULL);
    tv.tv_sec // seconds
    tv.tv_usec // microseconds
    
    0 讨论(0)
  • 2020-12-08 05:37

    Use @Arkaitz Jimenez's code to get two timevals:

    #include <sys/time.h>
    //...
    struct timeval tv1, tv2, diff;
    
    // get the first time:
    gettimeofday(&tv1, NULL);
    
    // do whatever it is you want to time
    // ...
    
    // get the second time:
    gettimeofday(&tv2, NULL);
    
    // get the difference:
    
    int result = timeval_subtract(&diff, &tv1, &tv2);
    
    // the difference is storid in diff now.
    

    Sample code for timeval_subtract can be found at this web site:

     /* Subtract the `struct timeval' values X and Y,
        storing the result in RESULT.
        Return 1 if the difference is negative, otherwise 0.  */
    
     int
     timeval_subtract (result, x, y)
          struct timeval *result, *x, *y;
     {
       /* Perform the carry for the later subtraction by updating y. */
       if (x->tv_usec < y->tv_usec) {
         int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
         y->tv_usec -= 1000000 * nsec;
         y->tv_sec += nsec;
       }
       if (x->tv_usec - y->tv_usec > 1000000) {
         int nsec = (x->tv_usec - y->tv_usec) / 1000000;
         y->tv_usec += 1000000 * nsec;
         y->tv_sec -= nsec;
       }
    
       /* Compute the time remaining to wait.
          tv_usec is certainly positive. */
       result->tv_sec = x->tv_sec - y->tv_sec;
       result->tv_usec = x->tv_usec - y->tv_usec;
    
       /* Return 1 if result is negative. */
       return x->tv_sec < y->tv_sec;
     }
    
    0 讨论(0)
  • 2020-12-08 05:39

    Also making aware of interactions between clock() and usleep(). usleep() suspends the program, and clock() only measures the time the program is running.

    If might be better off to use gettimeofday() as mentioned here

    0 讨论(0)
提交回复
热议问题