From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Roland Winkler Newsgroups: gmane.emacs.devel Subject: Re: process-file instead of call-process in proced.el? Date: Sat, 26 Mar 2022 12:37:25 -0500 Message-ID: <87pmm8pqcq.fsf@gnu.org> References: <87o81shd6m.fsf@gmx.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="36236"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Filipp Gunbin , emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Mar 26 18:42:03 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nYAQN-0009CG-Gz for ged-emacs-devel@m.gmane-mx.org; Sat, 26 Mar 2022 18:42:03 +0100 Original-Received: from localhost ([::1]:41558 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nYAQM-0003ix-04 for ged-emacs-devel@m.gmane-mx.org; Sat, 26 Mar 2022 13:42:02 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:42046) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nYALy-0002s5-OF for emacs-devel@gnu.org; Sat, 26 Mar 2022 13:37:30 -0400 Original-Received: from [2001:470:142:3::e] (port=58458 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nYALx-0007i6-W4; Sat, 26 Mar 2022 13:37:30 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=WEpqtNWMSxE3n+JjkhjJ5UmGTFAV1PIMICf/D3xXbok=; b=hgGRCEe5gqwb+djhNBmf DlDKou+7BE+crVzrEXQYZeAv6SlVjkDUO9RBrr5fI60GA3MzQ2BQmpTGrhpjZmNuEQ1z1ABQdYFn+ 7Lti57PRDpr+AGvgCnGDWRs6rkZTP1bF0AOS8RNZYFOncmtuaAbt9yPvFvvy/GqZeD6/dmpyPRi+e PBa69ETe4hukZD5M7UAhKVHLY6DZeKF4J3CZWpgs2/RkHUmJffv12pVLM0bRYHPlDrp76VSyAW4a1 COrKOE90O9fUlVKwbLDKeMrA3iDh3yp+sxgqa+VMCub/4OxJ1e4PugsRJEcJIn4P0QqWFT73fCVUn C6WhueHN3wawVA==; Original-Received: from [2600:1700:5650:f790::42] (port=55746 helo=regnitz) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nYALv-00015a-0H; Sat, 26 Mar 2022 13:37:29 -0400 In-Reply-To: <87o81shd6m.fsf@gmx.de> (Michael Albinus's message of "Sat, 26 Mar 2022 17:49:05 +0100") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:287486 Archived-At: On Sat, Mar 26 2022, Michael Albinus wrote: > I'mn working on the idea to extend `signal-process'. However, when I > call `proced' from a remote buffer, the `proced' listing shows always > the local processes. > > Is there a way to let `proced' show remote processes? I am not all certain I understand the question. In some sense proced is a front-end for the built-in functions list-system-processes and process-attributes, which is the Emacs equivalent of ps(1). So this covers only processes of the local machine, and I have no clue how this could cover another host.