source: git/kernel/timer.h @ 9af8d18

spielwiese
Last change on this file since 9af8d18 was 4b889d, checked in by Hans Schoenemann <hannes@…>, 13 years ago
RTIMER simplification git-svn-id: file:///usr/local/Singular/svn/trunk@13480 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 518 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$ */
10
11extern int timerv;
12void startTimer(void);
13void writeTime(const char* s);
14
15int initTimer();
16int  getTimer();
17
18extern int rtimerv;
19void startRTimer(void);
20void writeRTime(const char* s);
21
22void initRTimer();
23int  getRTimer();
24
25void SetTimerResolution(int res);
26void SetMinDisplayTime(double mtime);
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.