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
b91cd22f
Commit
b91cd22f
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Moved MACHINE-TYPE and MACHINE-VERSION into machine specific files.
parent
e1ce4942
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
code/misc.lisp
+1
-9
1 addition, 9 deletions
code/misc.lisp
code/pmax-vm.lisp
+13
-1
13 additions, 1 deletion
code/pmax-vm.lisp
code/sparc-vm.lisp
+13
-1
13 additions, 1 deletion
code/sparc-vm.lisp
with
27 additions
and
11 deletions
code/misc.lisp
+
1
−
9
View file @
b91cd22f
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.
6
1991/0
1/12 23:45:28
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.
7
1991/0
2/03 11:20:11
wlott Exp $
;;;
;;; Assorted miscellaneous functions for Spice Lisp.
;;;
...
...
@@ -82,14 +82,6 @@
"Returns a string describing the implementation version."
*lisp-implementation-version*
)
(
defun
machine-type
()
"Returns a string describing the type of the local machine."
"DECstation 3100"
)
(
defun
machine-version
()
"Returns a string describing the version of the local machine."
"DECstation 3100"
)
(
defun
machine-instance
()
"Returns a string giving the name of the local machine."
(
mach::unix-gethostname
))
...
...
This diff is collapsed.
Click to expand it.
code/pmax-vm.lisp
+
13
−
1
View file @
b91cd22f
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-vm.lisp,v 1.
5
199
0/1
2/0
6
1
7:39:33 ram
Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-vm.lisp,v 1.
6
199
1/0
2/0
3
1
1:19:52 wlott
Exp $
;;;
;;; This file contains the PMAX specific runtime stuff.
;;;
...
...
@@ -23,6 +23,18 @@
(
pushnew
:pmax
*features*
)
;;;; MACHINE-TYPE and MACHINE-VERSION
(
defun
machine-type
()
"Returns a string describing the type of the local machine."
"DECstation"
)
(
defun
machine-version
()
"Returns a string describing the version of the local machine."
"DECstation"
)
;;; FIXUP-CODE-OBJECT -- Interface
;;;
...
...
This diff is collapsed.
Click to expand it.
code/sparc-vm.lisp
+
13
−
1
View file @
b91cd22f
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-vm.lisp,v 1.
6
199
0/12/17 19:34:16
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-vm.lisp,v 1.
7
199
1/02/03 11:20:08
wlott Exp $
;;;
;;; This file contains the SPARC specific runtime stuff.
;;;
...
...
@@ -24,6 +24,18 @@
(
pushnew
:sun4
*features*
)
;;;; MACHINE-TYPE and MACHINE-VERSION
(
defun
machine-type
()
"Returns a string describing the type of the local machine."
"SPARCstation"
)
(
defun
machine-version
()
"Returns a string describing the version of the local machine."
"SPARCstation"
)
;;; FIXUP-CODE-OBJECT -- Interface
;;;
...
...
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