Skip to content
Snippets Groups Projects
Select Git revision
  • cb1523e4c290a004ea897b34cce94ed309ecd5de
  • master default
  • disable-new-requests
  • fix-bulletin-view-missing-notes-error
  • add-missing-queue-managers
  • projects-task-53
  • projects-task-51
  • projects-task-43
  • projects-task-24
  • projects-task-31
  • projects-task-32
  • projects-task-8
  • project-setup-docs
  • projects-task-28
  • projects-task-27
  • projects-task-9
  • projects-task-7
  • mass-update-course-codes-in-sections
  • wdn-four
  • learning-outcomes
  • additional-bulletin-pages
  • svn-redesign
  • svn-popups
  • svn-trunk
  • svn-performance
  • svn-tim
26 results

ReportsController.php

Blame
  • ftimer.h 401 B
    /* 
     * Function timers 
     */
    typedef void (*ftimer_test_funct)(void *); 
    
    /* Estimate the running time of f(argp) using the Unix interval timer.
       Return the average of n runs */
    double ftimer_itimer(ftimer_test_funct f, void *argp, int n);
    
    
    /* Estimate the running time of f(argp) using gettimeofday 
       Return the average of n runs */
    double ftimer_gettod(ftimer_test_funct f, void *argp, int n);