Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!cmcl2!rutgers!mcnc!ecsvax!bishop From: bishop@ecsvax.UUCP (Alan Bishop) Newsgroups: comp.os.minix Subject: Re: Process group changes and {set,get}pgrp() Message-ID: <3882@ecsvax.UUCP> Date: Thu, 17-Sep-87 18:27:44 EDT Article-I.D.: ecsvax.3882 Posted: Thu Sep 17 18:27:44 1987 Date-Received: Thu, 24-Sep-87 04:44:32 EDT References: <3875@ecsvax.UUCP> Reply-To: bishop@ecsvax.UUCP (Alan Bishop) Organization: NCSU (Student) Lines: 10 Keywords: process-groups setpgrp() getpgrp() Summary: There is a silly bug in the fixes. There is a silly bug in the process group modifications that I posted. The following patched line in fs/misc.c if (parent = INIT_PROC_NR) cp->fp_procgrp = pid; should be (whoops) if (parent == INIT_PROC_NR) cp->fp_procgrp = pid; alan