From 2af994ada6118aadb26573a73485ec1944f28d62 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 23 Jan 2004 00:22:28 +0000 Subject: [PATCH] Add a comment describing why we need to be notified about our child stopping. --- sudo_edit.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sudo_edit.c b/sudo_edit.c index 3bdcb5743..8cd8c4638 100644 --- a/sudo_edit.c +++ b/sudo_edit.c @@ -236,7 +236,13 @@ int sudo_edit(argc, argv) _exit(127); } - /* Anxious parent, waiting for letters home from camp... */ + /* + * Wait for status from the child. Most modern kernels + * will not let an unprivileged child process send a + * signal to its privileged parent to we have to request + * status when the child is stopped and then send the + * same signal to our own pid. + */ do { #ifdef sudo_waitpid pid = sudo_waitpid(kidpid, &i, WUNTRACED); -- 2.50.1