From 8947ade7735b5a6dbaea64c7edd92d88d49cc2cf Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Thu, 13 Apr 2017 18:05:39 +0200 Subject: [PATCH] Revert "Add clasp support to launch-program" This reverts commit b3622011da5ed496233003f7f7ae76099c63ff5b. The commit was based on the wrong assumption that terminate-process would kill a Unix thread (a la pthread_create) rather than subprocess (a la fork+execve). --- uiop/launch-program.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/uiop/launch-program.lisp b/uiop/launch-program.lisp index 8f4f35376..da21fa220 100644 --- a/uiop/launch-program.lisp +++ b/uiop/launch-program.lisp @@ -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)) -- GitLab