monotoniccpuinfo.h 551 B

123456789101112131415161718192021222324252627
  1. /*
  2. cpucycles monotoniccpuinfo.h version 20100804
  3. D. J. Bernstein
  4. Public domain.
  5. */
  6. #ifndef CPUCYCLES_monotoniccpuinfo_h
  7. #define CPUCYCLES_monotoniccpuinfo_h
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. extern long long cpucycles_monotoniccpuinfo(void);
  12. extern long long cpucycles_monotoniccpuinfo_persecond(void);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #ifndef cpucycles_implementation
  17. #define cpucycles_implementation "monotoniccpuinfo"
  18. #define cpucycles cpucycles_monotoniccpuinfo
  19. #define cpucycles_persecond cpucycles_monotoniccpuinfo_persecond
  20. #endif
  21. #endif