0.8.2:
authorWilliam Harold Newman <william.newman@airmail.net>
Fri, 25 Jul 2003 19:54:00 +0000 (19:54 +0000)
committerWilliam Harold Newman <william.newman@airmail.net>
Fri, 25 Jul 2003 19:54:00 +0000 (19:54 +0000)
release, tagged as sbcl_0_8_2

src/code/time.lisp
version.lisp-expr

index 5ddfde3..5e3a02d 100644 (file)
@@ -27,8 +27,8 @@
 
 (defun get-internal-real-time ()
   #!+sb-doc
-  "Return the real time in the internal time format. This is useful for
-  finding elapsed time. See INTERNAL-TIME-UNITS-PER-SECOND."
+  "Return the real time in the internal time format. (See
+  INTERNAL-TIME-UNITS-PER-SECOND.) This is useful for finding elapsed time."
   (multiple-value-bind (ignore seconds useconds) (sb!unix:unix-gettimeofday)
     (declare (ignore ignore) (type (unsigned-byte 32) seconds useconds))
     (let ((base *internal-real-time-base-seconds*)
@@ -47,8 +47,8 @@
 
 (defun get-internal-run-time ()
   #!+sb-doc
-  "Return the run time in the internal time format. This is useful for
-  finding CPU usage."
+  "Return the run time in the internal time format. (See
+  INTERNAL-TIME-UNITS-PER-SECOND.) This is useful for finding CPU usage."
   (declare (values (unsigned-byte 32)))
   (multiple-value-bind (ignore utime-sec utime-usec stime-sec stime-usec)
       (sb!unix:unix-fast-getrusage sb!unix:rusage_self)
index 9a2b16a..90a6b18 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.1.53"
+"0.8.2"