2

我想测量挂钟时间,clock_gettime但每次运行代码时,它都显示为 0。这是为什么呢?(我希望我的结果以毫秒为单位。

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>

int main( int argc, char **argv )
  {
    struct timespec start, stop;
    unsigned long accum;

    if( clock_gettime( CLOCK_REALTIME, &start) == -1 ) {
      perror( "clock gettime" );
      exit( EXIT_FAILURE );
    }

    int i;
    for(i=0; i<100000000; i++){int a = 3; int b = 100; int c = a*b;}

    //system( argv[1] );

    if( clock_gettime( CLOCK_REALTIME, &stop) == -1 ) {
      perror( "clock gettime" );
      exit( EXIT_FAILURE );
    }

    accum = (unsigned long)( (stop.tv_sec - start.tv_sec) * 1000) + (unsigned long)( (stop.tv_nsec - start.tv_nsec) / 1000000 ) +0.5;
    printf( "%lu\n", accum );
    return( EXIT_SUCCESS );
  }
4

1 回答 1

2

因为编译器优化了你的循环。在循环中做一些不容易简化的事情(通过编译器);所以创造一些结果。然后在循环之后使用(例如打印)这个结果。

您也可以在编译时尝试关闭优化。但是由于您当前的循环很容易优化掉,这可能没有什么不同。

于 2013-07-03T16:36:08.603 回答