From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#17122: More problems with --no-substitutes Date: Fri, 28 Mar 2014 10:20:54 +0100 Message-ID: <87txair85l.fsf@gnu.org> References: <8738i3ipsh.fsf@yeeloong.lan> <87y4zvh7zv.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTSyL-0004om-VH for bug-guix@gnu.org; Fri, 28 Mar 2014 05:21:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WTSyE-0000F3-Bw for bug-guix@gnu.org; Fri, 28 Mar 2014 05:21:09 -0400 Received: from debbugs.gnu.org ([140.186.70.43]:52457) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTSyE-0000Ez-8w for bug-guix@gnu.org; Fri, 28 Mar 2014 05:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1WTSyD-0004dn-Tf for bug-guix@gnu.org; Fri, 28 Mar 2014 05:21:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87y4zvh7zv.fsf@yeeloong.lan> (Mark H. Weaver's message of "Thu, 27 Mar 2014 13:22:12 -0400") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Mark H Weaver Cc: 17122@debbugs.gnu.org Mark H Weaver skribis: > mhw:~/guix-core-updates$ ps auxww | grep guix-daemon > mhw 1275 3.0 0.2 5248 2688 pts/0 S+ 11:40 0:00 grep gui= x-daemon > root 13020 0.0 0.2 7552 2496 tty6 S+ Mar22 0:00 guix-dae= mon --no-substitutes --build-users-group=3Dguix-builder > root 14429 0.1 0.9 15808 10304 ? Ss Mar26 1:05 guix-dae= mon 14425 --build-users-group=3Dguix-builder > > Notice that there's another 'guix-daemon' process here (pid 14429) which > I didn't start, and which has "--build-users-group=3Dguix-builder" but is > missing "--no-substitutes". Process 14429 is a child of the real guix-daemon, as spawned upon =E2=80=98accept=E2=80=99 success; see nix-daemon.cc:878. The fact that =E2=80=9C--no-substitutes=E2=80=9D is replaced with =E2=80=9C= 14425=E2=80=9D is a result from the modification of argvSaved[1] in subsequent lines, and doesn=E2=80= =99t change anything regarding substitute handling (which is handled by the parent process anyway.) Ludo=E2=80=99.