all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: master b4f504a0ea: Load desktop without prompting if process is dead
@ 2022-03-24 14:50 Eli Zaretskii
  2022-03-25 15:28 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2022-03-24 14:50 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: emacs-devel

> +(defun desktop--emacs-pid-running-p (pid)
> +  "Return t if an Emacs process with PID exists."
> +  (when-let ((attr (process-attributes pid)))
> +    (equal (alist-get 'comm attr)
> +           (file-name-nondirectory (car command-line-args)))))

This assumes that command-line-args resolves symlinks in the Emacs
program's name?  Or that the 'comm' attribute in process-attributes
does NOT resolve symlinks?  Because otherwise the above will cause
false negatives.  And on Windows, there's the issue of the ".exe"
extension, which could be in one, but not the other, I think?



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-26 16:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-24 14:50 master b4f504a0ea: Load desktop without prompting if process is dead Eli Zaretskii
2022-03-25 15:28 ` Lars Ingebrigtsen
2022-03-26  7:30   ` Eli Zaretskii
2022-03-26 16:40     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.