From: William Harold Newman Date: Fri, 25 Jul 2003 19:54:00 +0000 (+0000) Subject: 0.8.2: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=0eb4d7b8a49df68afd264b2b0897f793c569760b;p=sbcl.git 0.8.2: release, tagged as sbcl_0_8_2 --- diff --git a/src/code/time.lisp b/src/code/time.lisp index 5ddfde3..5e3a02d 100644 --- a/src/code/time.lisp +++ b/src/code/time.lisp @@ -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) diff --git a/version.lisp-expr b/version.lisp-expr index 9a2b16a..90a6b18 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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"