test.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:35:29  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #include <sys/types.h>
  10. #include <sys/time.h>
  11. #include <time.h>
  12. #include <signal.h>
  13. main()
  14. {
  15.     int i;
  16.     hrtime_t start, end;
  17.     time_t t;
  18.     start= gethrtime();
  19.     for(i= 0x100000; i--; ) {
  20.         signal (SIGPIPE, SIG_IGN);
  21.         /*t= time(NULL);*/
  22.         i=i;
  23.     }
  24.     end= gethrtime();
  25.     printf("Execution time: %fn", (end-start)/1000000.0);
  26. }