source: git/Singular/timer.h @ a70441f

spielwiese
Last change on this file since a70441f was a70441f, checked in by Olaf Bachmann <obachman@…>, 24 years ago
Windows and gcc 2.95 porting git-svn-id: file:///usr/local/Singular/svn/trunk@4273 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 581 bytes
Line 
1#ifndef TIMER_H
2#define TIMER_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7*  ABSTRACT - get the computing time
8*/
9/* $Id: timer.h,v 1.6 2000-04-27 10:07:12 obachman Exp $ */
10
11extern int timerv;
12void startTimer(void);
13void writeTime(char* s);
14
15int initTimer();
16int  getTimer();
17
18#ifdef HAVE_RTIMER
19extern int rtimerv;
20void startRTimer(void);
21void writeRTime(char* s);
22
23void initRTimer();
24int  getRTimer();
25#endif
26
27void SetTimerResolution(int res);
28void SetMinDisplayTime(double mtime);
29
30#endif
31
Note: See TracBrowser for help on using the repository browser.