X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftimer.cpp;h=2a11872de77501d062d50501833972fa42b1f2b5;hp=921e267aa3f189431cec389e855bd1976503d67e;hb=aea526b213d67cb25c02e232396d8595f8434859;hpb=e7cc6a764ff67b5885d6633385fac23ccc1dc9a7 diff --git a/check/timer.cpp b/check/timer.cpp index 921e267a..2a11872d 100644 --- a/check/timer.cpp +++ b/check/timer.cpp @@ -3,7 +3,7 @@ * A simple stop watch class. */ /* - * GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,34 +20,38 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "times.h" +#include +#include +#include -timer::timer(void) : on(false) +#include "timer.h" + +timer::timer() : on(false) { getrusage(RUSAGE_SELF, &used1); getrusage(RUSAGE_SELF, &used2); } -void timer::start(void) +void timer::start() { on = true; getrusage(RUSAGE_SELF, &used1); getrusage(RUSAGE_SELF, &used2); } -void timer::stop(void) +void timer::stop() { on = false; getrusage(RUSAGE_SELF, &used2); } -void timer::reset(void) +void timer::reset() { getrusage(RUSAGE_SELF, &used1); getrusage(RUSAGE_SELF, &used2); } -double timer::read(void) +double timer::read() { double elapsed; if (this->running()) @@ -60,7 +64,7 @@ double timer::read(void) return 0.01*int(elapsed*100+0.5); } -bool timer::running(void) +bool timer::running() { return on; }