From: kronbichler Date: Mon, 12 Jan 2009 10:08:59 +0000 (+0000) Subject: Slight update in comments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=908023f578c6141bc8bfb300c7c06001514e196d;p=dealii-svn.git Slight update in comments. git-svn-id: https://svn.dealii.org/trunk@18184 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/timer.h b/deal.II/base/include/base/timer.h index f37ba086dd..28cf778628 100644 --- a/deal.II/base/include/base/timer.h +++ b/deal.II/base/include/base/timer.h @@ -18,11 +18,12 @@ DEAL_II_NAMESPACE_OPEN /** - * This is a very simple class which provides information about the time - * elapsed since the timer was started last time. Information is retrieved - * from the system on the basis of clock cycles since last time the computer - * was booted. On a SUN workstation, this information is exact to about a - * microsecond. + * This is a very simple class which provides information about both the + * CPU time and the wallclock time elapsed since the timer was started + * last time. Information is retrieved from the system on the basis of + * clock cycles since last time the computer was booted for the CPU + * time. On a SUN workstation, this information is exact to about a + * microsecond. * * *

Usage