[go: up one dir, main page]

File: timer.h

package info (click to toggle)
suck 4.3.4-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 1,148 kB
  • sloc: ansic: 12,085; perl: 528; sh: 363; makefile: 348; java: 144
file content (12 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _SUCK_TIMER_H
#define _SUCK_TIMER_H 1

#ifdef HAVE_GETTIMEOFDAY
double TimerFunc(int, long, FILE *);
#else
void TimerFunc(int, long, FILE *);
#endif

enum  timer_funcs { TIMER_START, TIMER_ADDBYTES, TIMER_DISPLAY, TIMER_TOTALS, TIMER_TIMEONLY, TIMER_GET_BPS };

#endif /* _SUCK_TIMER_H */