Function: tramp-smb-kill-winexe-function
tramp-smb-kill-winexe-function is a byte-compiled function defined in
tramp-smb.el.gz.
Signature
(tramp-smb-kill-winexe-function)
Documentation
Send SIGKILL to the winexe process.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-smb.el.gz
(defun tramp-smb-kill-winexe-function ()
"Send SIGKILL to the winexe process."
(ignore-errors
(let ((p (get-buffer-process (current-buffer))))
(when (process-live-p p)
(signal-process (process-id p) 'SIGINT)))))