From: Ken Brown <kbrown@cornell.edu>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 55153@debbugs.gnu.org
Subject: bug#55153: 29.0.50; Implement system_process_attributes on Cygwin
Date: Wed, 27 Apr 2022 12:45:45 -0400 [thread overview]
Message-ID: <f29d5f68-34a7-1f63-04d8-3b17f958c4f7@cornell.edu> (raw)
In-Reply-To: <83zgk6bk11.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 913 bytes --]
On 4/27/2022 11:53 AM, Eli Zaretskii wrote:
>> Date: Wed, 27 Apr 2022 11:16:46 -0400
>> From: Ken Brown <kbrown@cornell.edu>
>>
>> +# ifdef CYGWIN
>> + /* ttname */
>> + strcpy (procfn_end, "/ctty");
>> + fd = emacs_open (fn, O_RDONLY, 0);
>> + if (fd < 0)
>> + nread = 0;
>> + else
>> + {
>> + record_unwind_protect_int (close_file_unwind, fd);
>> + nread = emacs_read_quit (fd, procbuf, sizeof procbuf);
>> + }
>> + /* /proc/<pid>/ctty should always end in newline. */
>> + if (0 < nread && procbuf[nread - 1] == '\n')
>> + procbuf[nread - 1] = '\0';
>> + else
>> + procbuf[0] = '\0';
>> + attrs = Fcons (Fcons (Qttname, build_string (procbuf)), attrs);
>
> Is what you read from /proc/<pid>/ctty guaranteed to be pure-ASCII
> string?
Yes. It's typically something like "/dev/pty0".
> P.S. Doesn't this warrant a NEWS entry?
Revised patch attached, with a NEWS entry.
Ken
[-- Attachment #2: 0001-Implement-system_process_attributes-on-Cygwin.patch --]
[-- Type: text/plain, Size: 3072 bytes --]
From 5af483b3adcd475a2d544c8f23462d90055498c0 Mon Sep 17 00:00:00 2001
From: Ken Brown <kbrown@cornell.edu>
Date: Wed, 27 Apr 2022 10:46:57 -0400
Subject: [PATCH] Implement system_process_attributes on Cygwin
* src/sysdep.c (system_process_attributes) [CYGWIN]: Implement,
using the /proc filesystem. The code is identical to the
GNU/Linux code except for the 'ttname' attribute. (Bug#55153)
* etc/NEWS: Mention the change.
---
etc/NEWS | 5 +++++
src/sysdep.c | 26 +++++++++++++++++++++++++-
2 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/etc/NEWS b/etc/NEWS
index 2ecad81b11..335a55e656 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2149,6 +2149,11 @@ where those APIs are available.
When 'w32-use-native-image-API' is non-nil, Emacs on MS-Windows now
has built-in support for displaying BMP images.
+** Cygwin
+
+---
+*** 'process-attributes' is now implemented.
+
\f
----------------------------------------------------------------------
This file is part of GNU Emacs.
diff --git a/src/sysdep.c b/src/sysdep.c
index 9c1e59c02b..95295e7e67 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3193,7 +3193,7 @@ make_lisp_timeval (struct timeval t)
#endif
-#ifdef GNU_LINUX
+#if defined (GNU_LINUX) || defined (CYGWIN)
static Lisp_Object
time_from_jiffies (unsigned long long ticks, Lisp_Object hz, Lisp_Object form)
@@ -3241,6 +3241,7 @@ get_up_time (void)
return up;
}
+# ifdef GNU_LINUX
#define MAJOR(d) (((unsigned)(d) >> 8) & 0xfff)
#define MINOR(d) (((unsigned)(d) & 0xff) | (((unsigned)(d) & 0xfff00000) >> 12))
@@ -3286,6 +3287,7 @@ procfs_ttyname (int rdev)
unblock_input ();
return build_string (name);
}
+# endif /* GNU_LINUX */
static uintmax_t
procfs_get_total_memory (void)
@@ -3434,7 +3436,9 @@ system_process_attributes (Lisp_Object pid)
attrs = Fcons (Fcons (Qppid, INT_TO_INTEGER (ppid)), attrs);
attrs = Fcons (Fcons (Qpgrp, INT_TO_INTEGER (pgrp)), attrs);
attrs = Fcons (Fcons (Qsess, INT_TO_INTEGER (sess)), attrs);
+# ifdef GNU_LINUX
attrs = Fcons (Fcons (Qttname, procfs_ttyname (tty)), attrs);
+# endif
attrs = Fcons (Fcons (Qtpgid, INT_TO_INTEGER (tpgid)), attrs);
attrs = Fcons (Fcons (Qminflt, INT_TO_INTEGER (minflt)), attrs);
attrs = Fcons (Fcons (Qmajflt, INT_TO_INTEGER (majflt)), attrs);
@@ -3483,6 +3487,26 @@ system_process_attributes (Lisp_Object pid)
}
unbind_to (count, Qnil);
+# ifdef CYGWIN
+ /* ttname */
+ strcpy (procfn_end, "/ctty");
+ fd = emacs_open (fn, O_RDONLY, 0);
+ if (fd < 0)
+ nread = 0;
+ else
+ {
+ record_unwind_protect_int (close_file_unwind, fd);
+ nread = emacs_read_quit (fd, procbuf, sizeof procbuf);
+ }
+ /* /proc/<pid>/ctty should always end in newline. */
+ if (0 < nread && procbuf[nread - 1] == '\n')
+ procbuf[nread - 1] = '\0';
+ else
+ procbuf[0] = '\0';
+ attrs = Fcons (Fcons (Qttname, build_string (procbuf)), attrs);
+ unbind_to (count, Qnil);
+# endif /* CYGWIN */
+
/* args */
strcpy (procfn_end, "/cmdline");
fd = emacs_open (fn, O_RDONLY, 0);
--
2.36.0
next prev parent reply other threads:[~2022-04-27 16:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-27 15:00 bug#55153: 29.0.50; Implement system_process_attributes on Cygwin Ken Brown
2022-04-27 15:16 ` Ken Brown
2022-04-27 15:52 ` Eli Zaretskii
2022-04-27 16:45 ` Ken Brown [this message]
2022-04-27 17:12 ` Eli Zaretskii
2022-04-27 17:25 ` Ken Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f29d5f68-34a7-1f63-04d8-3b17f958c4f7@cornell.edu \
--to=kbrown@cornell.edu \
--cc=55153@debbugs.gnu.org \
--cc=eliz@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.