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
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
Jan Moringen
asdf
Commits
eff10f20
Commit
eff10f20
authored
Sep 06, 2017
by
Elias Pipping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
%process-status: Add a comment
parent
d1700092
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
uiop/launch-program.lisp
uiop/launch-program.lisp
+6
-2
No files found.
uiop/launch-program.lisp
View file @
eff10f20
...
...
@@ -277,8 +277,12 @@ argument to pass to the internal RUN-PROGRAM"
(
%code-to-status
exit-code
signal-code
))
#+
clozure
(
ccl:external-process-status
process
)
#+
(
or
cmucl
scl
)
(
let
((
status
(
ext:process-status
process
)))
(
values
status
(
if
(
member
status
'
(
:exited
:signaled
))
(
ext:process-exit-code
process
))))
(
if
(
member
status
'
(
:exited
:signaled
))
;; Calling ext:process-exit-code on
;; processes that are still alive
;; yields an undefined result
(
values
status
(
ext:process-exit-code
process
))
status
))
#+
ecl
(
ext:external-process-status
process
)
#+
lispworks
;; a signal is only returned on LispWorks 7+
...
...
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