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
ac88faea
Commit
ac88faea
authored
26 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Add a file-comment with the files header.
parent
9fa03c83
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/multi-proc.lisp
+7
-5
7 additions, 5 deletions
code/multi-proc.lisp
with
7 additions
and
5 deletions
code/multi-proc.lisp
+
7
−
5
View file @
ac88faea
...
...
@@ -3,7 +3,8 @@
;;; This code was written by Douglas T. Crosher and has been placed in
;;; the Public domain, and is provided 'as is'.
;;;
;;; $Id: multi-proc.lisp,v 1.27 1998/01/26 14:59:45 dtc Exp $
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/multi-proc.lisp,v 1.28 1998/05/01 00:53:16 dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1153,10 +1154,11 @@
should be setup to the *initial-process*. If one of the processes quits
by throwing to %end-of-the-world then *quitting-lisp* will have been
set to the exit value which is noted by the idle loop which tries to
exit gracefully destroying all the process giving them a chance to unwind."
exit gracefully destroying all the processes and giving them a chance
to unwind."
(
declare
(
optimize
(
speed
3
)))
(
assert
(
eq
*current-process*
*initial-process*
)
()
"Only the *initial-process* is intended to run th
is
idle loop"
)
"Only the *initial-process* is intended to run th
e
idle loop"
)
;; Ensure the *idle-process* is setup.
(
unless
*idle-process*
(
setf
*idle-process*
*current-process*
))
...
...
@@ -1581,9 +1583,9 @@
(
password
(
random
(
expt
2
24
))))
(
declare
(
type
(
unsigned-byte
16
)
port
))
"Create a Lisp connection listener, listening on a TCP port for new
connections and starting a new top-level loop for
m
each. If a password
connections and starting a new top-level loop for each. If a password
is not given then one will be generated and reported. A search is
performed for the first free port starting at the give port which
performed for the first free port starting at the give
n
port which
defaults to 1025."
(
labels
(
;; The session top level read eval. loop.
(
start-top-level
(
fd
)
...
...
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