Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

14 rindas
401 B

pirms 6 mēnešiem
  1. /*
  2. * Function timers
  3. */
  4. typedef void (*ftimer_test_funct)(void *);
  5. /* Estimate the running time of f(argp) using the Unix interval timer.
  6. Return the average of n runs */
  7. double ftimer_itimer(ftimer_test_funct f, void *argp, int n);
  8. /* Estimate the running time of f(argp) using gettimeofday
  9. Return the average of n runs */
  10. double ftimer_gettod(ftimer_test_funct f, void *argp, int n);