Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kmrcl
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
Container 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
Nyxt
kmrcl
Commits
a5308cfb
Commit
a5308cfb
authored
9 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
Update SBCL functions to terminate-thread and exit
parent
6f9d5a46
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+6
-0
6 additions, 0 deletions
ChangeLog
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
impl.lisp
+1
-1
1 addition, 1 deletion
impl.lisp
processes.lisp
+1
-4
1 addition, 4 deletions
processes.lisp
with
14 additions
and
5 deletions
ChangeLog
+
6
−
0
View file @
a5308cfb
28 Aug 2015 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.107
* processes.lisp: Update name of SBCL function call to
terminate-thread.
* impl.lisp: Update name of SBCL function call to sb-ext:exit
1 Apr 2011 Kevin Rosenberg <kevin@rosenberg.net>
1 Apr 2011 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.104
* Version 1.104
* listener.lisp: Add support for active sockets in listener
* listener.lisp: Add support for active sockets in listener
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
a5308cfb
cl-kmrcl (1.107-1) unstable; urgency=medium
* New upstream
-- Kevin M. Rosenberg <kmr@debian.org> Fri, 28 Aug 2015 23:49:18 -0600
cl-kmrcl (1.106-1) unstable; urgency=low
cl-kmrcl (1.106-1) unstable; urgency=low
* New upstream
* New upstream
...
...
This diff is collapsed.
Click to expand it.
impl.lisp
+
1
−
1
View file @
a5308cfb
...
@@ -105,7 +105,7 @@
...
@@ -105,7 +105,7 @@
#+
gcl
(
lisp:bye
code
)
#+
gcl
(
lisp:bye
code
)
#+
lispworks
(
lw:quit
:status
code
)
#+
lispworks
(
lw:quit
:status
code
)
#+
lucid
(
lcl:quit
code
)
#+
lucid
(
lcl:quit
code
)
#+
sbcl
(
sb-ext:
qu
it
:
unix-status
(
typecase
code
(
number
code
)
(
null
0
)
(
t
1
)))
#+
sbcl
(
sb-ext:
ex
it
:
code
(
typecase
code
(
number
code
)
(
null
0
)
(
t
1
)))
#+
mcl
(
ccl:quit
code
)
#+
mcl
(
ccl:quit
code
)
#-
(
or
allegro
clisp
cmu
scl
cormanlisp
gcl
lispworks
lucid
sbcl
mcl
)
#-
(
or
allegro
clisp
cmu
scl
cormanlisp
gcl
lispworks
lucid
sbcl
mcl
)
(
error
'not-implemented
:proc
(
list
'quit
code
)))
(
error
'not-implemented
:proc
(
list
'quit
code
)))
...
...
This diff is collapsed.
Click to expand it.
processes.lisp
+
1
−
4
View file @
a5308cfb
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
(
defun
destroy-process
(
process
)
(
defun
destroy-process
(
process
)
#+
cmu
(
mp:destroy-process
process
)
#+
cmu
(
mp:destroy-process
process
)
#+
allegro
(
mp:process-kill
process
)
#+
allegro
(
mp:process-kill
process
)
#+
sb-thread
(
sb-thread:
destroy
-thread
process
)
#+
sb-thread
(
sb-thread:
terminate
-thread
process
)
#+
lispworks
(
mp:process-kill
process
)
#+
lispworks
(
mp:process-kill
process
)
#+
ccl
(
ccl:process-kill
process
)
#+
ccl
(
ccl:process-kill
process
)
)
)
...
@@ -80,6 +80,3 @@
...
@@ -80,6 +80,3 @@
"Put thread to sleep for n seconds."
"Put thread to sleep for n seconds."
#+
allegro
(
mp:process-sleep
n
)
#+
allegro
(
mp:process-sleep
n
)
#-
allegro
(
sleep
n
))
#-
allegro
(
sleep
n
))
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