rdtscmod.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  *
  3.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  4.  * Copyright (C) 2001 O'Reilly & Associates
  5.  *
  6.  * The source code in this file can be freely used, adapted,
  7.  * and redistributed in source or binary form, so long as an
  8.  * acknowledgment appears in derived source files.  The citation
  9.  * should list that the code comes from the book "Linux Device
  10.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  11.  * by O'Reilly & Associates.   No warranty is attached;
  12.  * we cannot take responsibility for errors or fitness for use.
  13.  *
  14.  */
  15. #ifndef __KERNEL__
  16. #  define __KERNEL__
  17. #endif
  18. #ifndef MODULE
  19. #  define MODULE
  20. #endif
  21. #include <linux/module.h>
  22. #include <linux/errno.h>
  23. #define rdtsc(dest) 
  24.      __asm__ __volatile__("nop; mfc0 %0,$9; nop" : "=r" (dest))
  25. int i;
  26. int init_module()
  27. {
  28.     unsigned int count1,count2,fix;
  29.     rdtsc(count1);
  30.     rdtsc(count2);
  31.     fix = count2-count1;
  32.     rdtsc(count1);
  33.     printk("rdtsc()  took %5u cyclesn",fix);
  34.     rdtsc(count2);
  35.     printk("printk() took %5u cyclesn",count2-count1-fix);
  36.     return 0;
  37. }
  38. void cleanup_module(void)
  39. {}