From c8035f81563b837147ace964068c9ded48552f48 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 3 Mar 1994 16:58:30 +0000 Subject: [PATCH] Print warning in status hook when server dies. Simplified boolen expression. --- interface/interface.lisp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/interface/interface.lisp b/interface/interface.lisp index 479632e7a..9ec063d84 100644 --- a/interface/interface.lisp +++ b/interface/interface.lisp @@ -285,17 +285,19 @@ (defun system-server-status-hook (process) (let ((status (ext:process-status process))) - (when (or (eq status :exited) - (eq status :signaled)) - (setf *system-motif-server* nil)))) + (unless (ext:process-alive-p process) + (setf *system-motif-server* nil) + (warn "Motif server died.~@ + Status = ~S, exit code = ~D." + (ext:process-status process) + (ext:process-exit-code process))))) (defvar *server-startup-timeout* 30) (defun verify-system-server-exists () (when (and (not xt:*default-server-host*) - (or (not *system-motif-server*) - (and *system-motif-server* - (not (ext:process-alive-p *system-motif-server*))))) + (not (and *system-motif-server* + (ext:process-alive-p *system-motif-server*)))) (let ((process (ext:run-program (merge-pathnames *clm-binary-name* *clm-binary-directory*) @@ -323,6 +325,7 @@ (when (> (get-internal-real-time) end-time) (xti:toolkit-error "Timed out waiting for Motif server to start up."))) + (setf *system-motif-server* process))))) -- GitLab