Changeset 15645


Ignore:
Timestamp:
02/20/23 00:02:06 (7 months ago)
Author:
Mark Evenson
Message:

Further necessary triage for SYS:RUN-PROGRAM

Followup to
<https://github.com/armedbear/abcl/commit/1113f4f7778611d2568ddee3478255b976191fbe>.

Hopefully still resolves <https://github.com/armedbear/abcl/issues/506>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/run-program.lisp

    r15643 r15645  
    191191                  (appendp (second output-redirection)))
    192192              (threads:make-thread (lambda () (to-file error file :append appendp))))))
    193         (when (and wait
    194                    (not-java-6-p)
    195                    (process-wait process))
    196           process)))))
     193        (when (and (not (find :java-6 *features*)) ;; TODO deprecate
     194                   wait)
     195          (process-wait process))
     196          process))))
    197197
    198198(defconstant +inherit+
Note: See TracChangeset for help on using the changeset viewer.