source: git/kernel/timer.h @ 07625cb

spielwiese
Last change on this file since 07625cb was 35aab3, checked in by Hans Schönemann <hannes@…>, 21 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 585 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.1.1.1 2003-10-06 12:16:04 Singular 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.