Return a list of two strings, one describing THREAD's status, the
other describing THREAD's blocker, if any."
(cond
- ((not (thread-alive-p thread)) '("Finished" ""))
+ ((not (thread-live-p thread)) '("Finished" ""))
((eq thread (current-thread)) '("Running" ""))
(t (if-let ((blocker (thread--blocker thread)))
`("Blocked" ,(prin1-to-string blocker))
"Send the specified SIGNAL to the thread at point.
Ask for user confirmation before signaling the thread."
(let ((thread (tabulated-list-get-id)))
- (if (thread-alive-p thread)
+ (if (thread-live-p thread)
(when (y-or-n-p (format "Send %s signal to %s? " signal thread))
- (if (thread-alive-p thread)
+ (if (thread-live-p thread)
(thread-signal thread signal nil)
(message "This thread is no longer alive")))
(message "This thread is no longer alive"))))
"Display the backtrace for the thread at point."
(interactive)
(let ((thread (tabulated-list-get-id)))
- (if (thread-alive-p thread)
+ (if (thread-live-p thread)
(let ((buffer (get-buffer-create "*Thread Backtrace*")))
(pop-to-buffer buffer)
(unless (derived-mode-p 'backtrace-mode)
(defun thread-list-backtrace--revert-hook-function ()
(setq backtrace-frames
- (when (thread-alive-p thread-list-backtrace--thread)
+ (when (thread-live-p thread-list-backtrace--thread)
(mapcar #'thread-list--make-backtrace-frame
(backtrace--frames-from-thread
thread-list-backtrace--thread)))))
(defun thread-list-backtrace--insert-header ()
(let ((name (thread-list--name thread-list-backtrace--thread)))
- (if (thread-alive-p thread-list-backtrace--thread)
+ (if (thread-live-p thread-list-backtrace--thread)
(progn
(insert (substitute-command-keys "Backtrace for thread `"))
(insert name)