pastebin - collaborative debugging tool
rovema.kpaste.net RSS


count_timer_syscalls.c
Posted by Anonymous on Wed 14th Sep 2022 19:02
raw | new post
view followups (newest first): count_timer_syscalls.ksh by Anonymous

  1.  
  2. /*
  3.  * count_timer_syscalls.c - runs timer 1000 times, strace can count syscalls
  4.  *
  5.  */
  6.  
  7. #include <sys/types.h>
  8. #include <sys/stat.h>
  9. #include <fcntl.h>
  10. #include <unistd.h>
  11. #include <time.h>
  12. #include <sched.h>
  13. #include <stdlib.h>
  14. #include <stdint.h>
  15. #include <stdio.h>
  16. #include <string.h>
  17. #include <errno.h>
  18.  
  19.  
  20. #ifndef CLOCK_INVALID
  21. #define CLOCK_INVALID -1
  22. #endif
  23.  
  24. #define NSEC_PER_SEC (1000000000LL)
  25.  
  26.  
  27. static
  28. clockid_t get_clockid(int fd)
  29. {
  30.         const int CLOCKFD = 3;
  31.  
  32.         return (((unsigned int) ~fd) << 3) | CLOCKFD;
  33. }
  34.  
  35.  
  36. static
  37. void test_loop_on_clock(clockid_t clkid, unsigned long num_cycles)
  38. {
  39.         struct timespec ts;
  40.         unsigned long cycles;
  41.  
  42.         for(cycles = 0UL ; cycles < num_cycles ; cycles++)
  43.         {
  44.                 (void)clock_gettime(clkid, &ts);
  45.                 (void)ts;
  46.         }
  47. }
  48.  
  49.  
  50. int main(int ac, char *av[])
  51. {
  52.         const char *clockname = av[1];
  53.  
  54.         (void)puts("# start.");
  55.        
  56.         if ((ac != 2) || (!clockname)) {
  57.                 (void)fprintf(stderr, "%s: Missing clockname argument\n", av[0]);
  58.                 return EXIT_FAILURE;
  59.         }
  60.        
  61.         if (!strcmp(clockname, "nic")) {
  62.                 int fd;
  63.                 clockid_t clkid;
  64.                 const char *devicename = "/dev/ptp0";
  65.  
  66. /*
  67.  * count_timer_syscalls.c - runs timer 1000 times, strace can count syscalls
  68.  *
  69.  */
  70.  
  71. #include <sys/types.h>
  72. #include <sys/stat.h>
  73. #include <fcntl.h>
  74. #include <unistd.h>
  75. #include <time.h>
  76. #include <sched.h>
  77. #include <stdlib.h>
  78. #include <stdint.h>
  79. #include <stdio.h>
  80. #include <string.h>
  81. #include <errno.h>
  82.  
  83.  
  84. #ifndef CLOCK_INVALID
  85. #define CLOCK_INVALID -1
  86. #endif
  87.  
  88. #define NSEC_PER_SEC (1000000000LL)
  89.  
  90.  
  91. static
  92. clockid_t get_clockid(int fd)
  93. {
  94.         const int CLOCKFD = 3;
  95.  
  96.         return (((unsigned int) ~fd) << 3) | CLOCKFD;
  97. }
  98.  
  99.  
  100. static
  101. void test_loop_on_clock(clockid_t clkid, unsigned long num_cycles)
  102. {
  103.         struct timespec ts;
  104.         unsigned long cycles;
  105.  
  106.         for(cycles = 0UL ; cycles < num_cycles ; cycles++)
  107.         {
  108.                 (void)clock_gettime(clkid, &ts);
  109.                 (void)ts;
  110.         }
  111. }
  112.  
  113.  
  114. int main(int ac, char *av[])
  115. {
  116.         const char *clockname = av[1];
  117.  
  118.         (void)puts("# start.");
  119.        
  120.         if ((ac != 2) || (!clockname)) {
  121.                 (void)fprintf(stderr, "%s: Missing clockname argument\n", av[0]);
  122.                 return EXIT_FAILURE;
  123.         }
  124.        
  125.         if (!strcmp(clockname, "nic")) {
  126.                 int fd;
  127.                 clockid_t clkid;
  128.                 const char *devicename = "/dev/ptp0";
  129.  
  130.                 fd = open(devicename, O_RDWR);
  131.                 if (fd < 0) {
  132.                         (void)fprintf(stderr, "opening %s: %s\n", devicename,
  133.                                 strerror(errno));
  134.                         return(EXIT_FAILURE);
  135.                 }
  136.  
  137.                 clkid = get_clockid(fd);
  138.                 if (CLOCK_INVALID == clkid) {
  139.                         (void)fprintf(stderr, "failed to read clock id\n");
  140.                         return(EXIT_FAILURE);
  141.                 }
  142.  
  143.                 (void)printf("## test run using nic clock\n");
  144.                 test_loop_on_clock(clkid, 8000UL);
  145.  
  146.                 (void)close(fd);
  147.         } else if (!strcmp(clockname, "CLOCK_MONOTONIC")) {
  148.                 (void)printf("## test run using CLOCK_MONOTONIC\n");
  149.  
  150.                 test_loop_on_clock(CLOCK_MONOTONIC, 8000UL);
  151.         } else if (!strcmp(clockname, "CLOCK_TAI")) {
  152.                 (void)printf("## test run using CLOCK_TAI\n");
  153.  
  154.                 test_loop_on_clock(CLOCK_TAI, 8000UL);
  155.         } else if (!strcmp(clockname, "CLOCK_BOOTTIME")) {
  156.                 (void)printf("## test run using CLOCK_BOOTTIME\n");
  157.  
  158.                 test_loop_on_clock(CLOCK_BOOTTIME, 8000UL);
  159.         } else if (!strcmp(clockname, "CLOCK_REALTIME")) {
  160.                 (void)printf("## test run using CLOCK_REALTIME\n");
  161.  
  162.                 test_loop_on_clock(CLOCK_REALTIME, 8000UL);
  163.         } else if (!strcmp(clockname, "CLOCK_REALTIME_COARSE")) {
  164.                 (void)printf("## test run using CLOCK_REALTIME_COARSE\n");
  165.  
  166.                 test_loop_on_clock(CLOCK_REALTIME_COARSE, 8000UL);
  167.         } else if (!strcmp(clockname, "CLOCK_THREAD_CPUTIME_ID")) {
  168.                 (void)printf("## test run using CLOCK_THREAD_CPUTIME_ID\n");
  169.  
  170.                 test_loop_on_clock(CLOCK_THREAD_CPUTIME_ID, 8000UL);
  171.         } else {
  172.                 (void)fprintf(stderr, "%s: Unknown clockname argument %s\n",
  173.                         av[0], clockname);
  174.                 return EXIT_FAILURE;
  175.         }
  176.  
  177.         (void)puts("# end.");
  178.  
  179.         return(EXIT_SUCCESS);
  180. }
  181.  
  182.                 fd = open(devicename, O_RDWR);
  183.                 if (fd < 0) {
  184.                         (void)fprintf(stderr, "opening %s: %s\n", devicename,
  185.                                 strerror(errno));
  186.                         return(EXIT_FAILURE);
  187.                 }
  188.  
  189.                 clkid = get_clockid(fd);
  190.                 if (CLOCK_INVALID == clkid) {
  191.                         (void)fprintf(stderr, "failed to read clock id\n");
  192.                         return(EXIT_FAILURE);
  193.                 }
  194.  
  195.                 (void)printf("## test run using nic clock\n");
  196.                 test_loop_on_clock(clkid, 8000UL);
  197.  
  198.                 (void)close(fd);
  199.         } else if (!strcmp(clockname, "CLOCK_MONOTONIC")) {
  200.                 (void)printf("## test run using CLOCK_MONOTONIC\n");
  201.  
  202.                 test_loop_on_clock(CLOCK_MONOTONIC, 8000UL);
  203.         } else if (!strcmp(clockname, "CLOCK_TAI")) {
  204.                 (void)printf("## test run using CLOCK_TAI\n");
  205.  
  206.                 test_loop_on_clock(CLOCK_TAI, 8000UL);
  207.         } else if (!strcmp(clockname, "CLOCK_BOOTTIME")) {
  208.                 (void)printf("## test run using CLOCK_BOOTTIME\n");
  209.  
  210.                 test_loop_on_clock(CLOCK_BOOTTIME, 8000UL);
  211.         } else if (!strcmp(clockname, "CLOCK_REALTIME")) {
  212.                 (void)printf("## test run using CLOCK_REALTIME\n");
  213.  
  214.                 test_loop_on_clock(CLOCK_REALTIME, 8000UL);
  215.         } else if (!strcmp(clockname, "CLOCK_REALTIME_COARSE")) {
  216.                 (void)printf("## test run using CLOCK_REALTIME_COARSE\n");
  217.  
  218.                 test_loop_on_clock(CLOCK_REALTIME_COARSE, 8000UL);
  219.         } else if (!strcmp(clockname, "CLOCK_THREAD_CPUTIME_ID")) {
  220.                 (void)printf("## test run using CLOCK_THREAD_CPUTIME_ID\n");
  221.  
  222.                 test_loop_on_clock(CLOCK_THREAD_CPUTIME_ID, 8000UL);
  223.         } else {
  224.                 (void)fprintf(stderr, "%s: Unknown clockname argument %s\n",
  225.                         av[0], clockname);
  226.                 return EXIT_FAILURE;
  227.         }
  228.  
  229.         (void)puts("# end.");
  230.  
  231.         return(EXIT_SUCCESS);
  232. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at