Mail Archives: cygwin/2010/10/20/01:09:49
X-Recipient: | archive-cygwin AT delorie DOT com
|
X-SWARE-Spam-Status: | No, hits=-0.4 required=5.0 tests=AWL,BAYES_50,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,T_TO_NO_BRKTS_FREEMAIL
|
X-Spam-Check-By: | sourceware.org
|
MIME-Version: | 1.0
|
In-Reply-To: | <4CBE5F53.30402@cornell.edu>
|
References: | <4CB9DE15 DOT 8010308 AT cornell DOT edu> <4CB9E9C0 DOT 3000509 AT cornell DOT edu> <20101018183438 DOT GA25878 AT ednor DOT casa DOT cgf DOT cx> <4CBCA2A5 DOT 4010601 AT cornell DOT edu> <20101018201805 DOT GA26254 AT ednor DOT casa DOT cgf DOT cx> <4CBD9DF2 DOT 3090804 AT cornell DOT edu> <20101019141557 DOT GA31784 AT ednor DOT casa DOT cgf DOT cx> <4CBE5F53 DOT 30402 AT cornell DOT edu>
|
Date: | Wed, 20 Oct 2010 06:09:35 +0100
|
Message-ID: | <AANLkTikUc9i0h-g3QHGzqKKRGoJf0-xSPgu6wy1U+zZ=@mail.gmail.com>
|
Subject: | Re: Sending signals to a subprocess
|
From: | Andy Koppe <andy DOT koppe AT gmail DOT com>
|
To: | cygwin AT cygwin DOT com
|
X-IsSubscribed: | yes
|
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm
|
List-Id: | <cygwin.cygwin.com>
|
List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com>
|
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com>
|
List-Archive: | <http://sourceware.org/ml/cygwin/>
|
List-Post: | <mailto:cygwin AT cygwin DOT com>
|
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
|
Sender: | cygwin-owner AT cygwin DOT com
|
Mail-Followup-To: | cygwin AT cygwin DOT com
|
Delivered-To: | mailing list cygwin AT cygwin DOT com
|
On 20 October 2010 04:17, Ken Brown <kbrown AT cornell DOT edu> wrote:
> Emacs creates a subprocess that runs an interactive bash shell. =C2=A0Ema=
cs wants
> to get the PGID of the foreground process group associated to the tty of
> this shell, and it does this on Linux via TIOCGPGRP (or equally well
> tcgetpgrp). =C2=A0I think it uses the file descriptor of the master of th=
e pty
> for this purpose. =C2=A0If you (or some other programmer reading this) co=
uld give
> me the code for setting all this up, I could play with it and try to figu=
re
> out why I'm seeing a difference between Linux and Cygwin here. =C2=A0I ju=
st don't
> know how to create a subprocess, give it a terminal, etc.
Here's a test along those lines that does show a difference between
Linux and Cygwin:
#include <stdio.h>
#include <pty.h>
int main(void)
{
int pid, fd;
pid =3D forkpty(&fd, 0, 0, 0);
if (!pid)
sleep(2);
else {
sleep(1);
printf("pid=3D%i fd=3D%i pgrp=3D%i\n", pid, fd, tcgetpgrp(fd));
}
}
On Linux, where it requires -lutil to link, this gives:
pid=3D13308 fd=3D3 tcgetpgrp(fd)=3D13308
On Cygwin:
pid=3D268 fd=3D3 tcgetpgrp(fd)=3D0
Neither of those looks POSIX-compliant to me, because tcgetpgrp should
return -1 since fd 3 isn't the controlling terminal of the calling
process, but the Linux behaviour is rather useful. Perhaps they
decided to apply that restriction only to the slave side?
Andy
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -