Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
043bb0ec
"compiler/proclaim.lisp" did not exist on "af740988bbcf55d655bbfed95252fdf0cb10140f"
Commit
043bb0ec
authored
33 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
In TIME, fixed display of consing and page faults in the case where no GC time
is displayed.
parent
7521bbac
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/time.lisp
+5
-4
5 additions, 4 deletions
code/time.lisp
with
5 additions
and
4 deletions
code/time.lisp
+
5
−
4
View file @
043bb0ec
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/time.lisp,v 1.1
1
1992/0
2/20 00:59:18
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/time.lisp,v 1.1
2
1992/0
3/14 13:46:37
ram Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -366,7 +366,7 @@
...
@@ -366,7 +366,7 @@
~S second~:P of real time~% ~
~S second~:P of real time~% ~
~S second~:P of user run time~% ~
~S second~:P of user run time~% ~
~S second~:P of system run time~% ~
~S second~:P of system run time~% ~
~
:[~;
[Run times include ~S second~:P GC run time]~% ~]~
~
@[
[Run times include ~S second~:P GC run time]~% ~]~
~S page fault~:P and~% ~
~S page fault~:P and~% ~
~S bytes consed.~%"
~S bytes consed.~%"
(
max
(
/
(
-
new-real-time
old-real-time
)
(
max
(
/
(
-
new-real-time
old-real-time
)
...
@@ -374,7 +374,8 @@
...
@@ -374,7 +374,8 @@
0.0
)
0.0
)
(
max
(
/
(
-
new-run-utime
old-run-utime
)
1000000.0
)
0.0
)
(
max
(
/
(
-
new-run-utime
old-run-utime
)
1000000.0
)
0.0
)
(
max
(
/
(
-
new-run-stime
old-run-stime
)
1000000.0
)
0.0
)
(
max
(
/
(
-
new-run-stime
old-run-stime
)
1000000.0
)
0.0
)
(
not
(
zerop
gc-run-time
))
(
unless
(
zerop
gc-run-time
)
(
/
(
float
gc-run-time
)
(
float
internal-time-units-per-second
))
(
/
(
float
gc-run-time
)
(
float
internal-time-units-per-second
)))
(
max
(
-
new-page-faults
old-page-faults
)
0
)
(
max
(
-
new-page-faults
old-page-faults
)
0
)
(
max
(
-
new-bytes-consed
old-bytes-consed
)
0
)))))))
(
max
(
-
new-bytes-consed
old-bytes-consed
)
0
)))))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment