source: git/kernel/timer.h @ fbc7cb

spielwiese
Last change on this file since fbc7cb was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 507 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
10extern int timerv;
11void startTimer(void);
12void writeTime(const char* s);
13
14int initTimer();
15int  getTimer();
16
17extern int rtimerv;
18void startRTimer(void);
19void writeRTime(const char* s);
20
21void initRTimer();
22int  getRTimer();
23
24void SetTimerResolution(int res);
25void SetMinDisplayTime(double mtime);
26
27#endif
28
Note: See TracBrowser for help on using the repository browser.