~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to dttools/src/timer.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2008- The University of Notre Dame
 
3
This software is distributed under the GNU General Public License.
 
4
See the file COPYING for details.
 
5
*/
 
6
 
 
7
#ifndef TIMER_H 
 
8
#define TIMER_H
 
9
 
 
10
/** @file timer.h Simple timer library.*/
 
11
 
 
12
void    timer_init(int, const char*[]);
 
13
void    timer_destroy();
 
14
void    timer_start(int);
 
15
void    timer_stop(int);
 
16
void    timer_reset(int);
 
17
double  timer_elapsed_time(int);
 
18
double  timer_average_time(int);
 
19
void    timer_print_summary(int);
 
20
 
 
21
#endif