From stdcxx-dev-return-4144-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Fri Aug 03 15:36:39 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 82919 invoked from network); 3 Aug 2007 15:36:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Aug 2007 15:36:39 -0000 Received: (qmail 78282 invoked by uid 500); 3 Aug 2007 15:36:39 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 78222 invoked by uid 500); 3 Aug 2007 15:36:38 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 78211 invoked by uid 99); 3 Aug 2007 15:36:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Aug 2007 08:36:38 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Aug 2007 15:36:35 +0000 Received: from [10.70.3.58] ([10.70.3.58]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id l73FaDGn002003 for ; Fri, 3 Aug 2007 15:36:14 GMT Message-ID: <46B34B6E.2040504@roguewave.com> Date: Fri, 03 Aug 2007 09:36:14 -0600 From: Andrew Black User-Agent: Thunderbird 1.5.0.12 (X11/20060911) MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: svn commit: r562224 - in /incubator/stdcxx/trunk/util: display.cpp display.h exec.cpp runall.cpp target.h util.cpp util.h References: <20070802190428.BD1C11A981A@eris.apache.org> In-Reply-To: <20070802190428.BD1C11A981A@eris.apache.org> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Greetings Martin. Something in this patch appears to cause the exec utility to hang on Windows. I haven't had much time to dig into the cause, but I thought I'd give everyone a heads up. Farid, if you have a chance, could you look into this? --Andrew Black sebor@apache.org wrote: > Author: sebor > Date: Thu Aug 2 12:04:26 2007 > New Revision: 562224 > > URL: http://svn.apache.org/viewvc?view=rev&rev=562224 > Log: > 2007-07-26 Martin Sebor > > * display.h (print_footer): Added an argument for the total number > of programs processed by the utility. > * display.cpp (print_target_verbose): Print stdin, stdout, and stderr > redirectiopn. > (print_status_verbose): Justified output. > (print_footer_plain): Printed the total number of programs processed > by the utility and avoided printing assertion totals unless they're > valid. > (print_footer_verbose): Added an argument. > * target.h (target_opts): Added infname and outfname members. > * util.h (input_name): Declared. > * util.cpp (input_name): Defined to parallel output_name(). > * exec.cpp (open_input): Removed. > (exec_file): Used target_opts::infname and target_opts::outfname. > * runall.cpp (run_target): Called input_name() and output_name() > to set the names of files to redirect input and output from and > to, respectively. > Avoided printing out assertion totals when they're not valid. > > Modified: > incubator/stdcxx/trunk/util/display.cpp > incubator/stdcxx/trunk/util/display.h > incubator/stdcxx/trunk/util/exec.cpp > incubator/stdcxx/trunk/util/runall.cpp > incubator/stdcxx/trunk/util/target.h > incubator/stdcxx/trunk/util/util.cpp > incubator/stdcxx/trunk/util/util.h > [Change snipped]