Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
04341a78
Commit
04341a78
authored
Apr 13, 2017
by
Robert Goldman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'clasp' into 'master'
Revert "Add clasp support to launch-program" See merge request
!71
parents
9ede3b0d
8947ade7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
uiop/launch-program.lisp
uiop/launch-program.lisp
+1
-2
No files found.
uiop/launch-program.lisp
View file @
04341a78
...
...
@@ -393,14 +393,13 @@ to ignore if URGENT is T. On some platforms, it may also be subject to
race conditions."
(
declare
(
ignorable
urgent
))
#+
abcl
(
sys:process-kill
(
slot-value
process-info
'process
))
#+
clasp
(
mp:process-kill
(
slot-value
process-info
'process
))
;; On ECL, this will only work on versions later than 2016-09-06,
;; but we still want to compile on earlier versions, so we use symbol-call
#+
ecl
(
symbol-call
:ext
:terminate-process
(
slot-value
process-info
'process
)
urgent
)
#+
lispworks7+
(
sys:pipe-kill-process
(
slot-value
process-info
'process
))
#+
mkcl
(
mk-ext:terminate-process
(
slot-value
process-info
'process
)
:force
urgent
)
#-
(
or
abcl
clasp
ecl
lispworks7+
mkcl
)
#-
(
or
abcl
ecl
lispworks7+
mkcl
)
(
os-cond
((
os-unix-p
)
(
%posix-send-signal
process-info
(
if
urgent
9
15
)))
((
os-windows-p
)
(
if-let
(
pid
(
process-info-pid
process-info
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment