Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 78982 invoked from network); 22 Jun 2007 00:40:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Jun 2007 00:40:07 -0000 Received: (qmail 38151 invoked by uid 500); 22 Jun 2007 00:40:11 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 38129 invoked by uid 500); 22 Jun 2007 00:40:11 -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 38118 invoked by uid 99); 22 Jun 2007 00:40:10 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2007 17:40:10 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.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; Thu, 21 Jun 2007 17:40:06 -0700 Received: from qxvcexch01.ad.quovadx.com ([192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id l5M0dftP030379 for ; Fri, 22 Jun 2007 00:39:41 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 21 Jun 2007 18:38:36 -0600 Message-ID: <467B1AE1.6080701@roguewave.com> Date: Thu, 21 Jun 2007 18:42:09 -0600 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.2) Gecko/20070221 SeaMonkey/1.1.1 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: Windows build error(s) References: <46741362.1080706@roguewave.com> <7BDB2168BEAEF14C98F1901FD2DE643894977B@epmsa009.minsk.epam.com> In-Reply-To: <7BDB2168BEAEF14C98F1901FD2DE643894977B@epmsa009.minsk.epam.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 22 Jun 2007 00:38:36.0502 (UTC) FILETIME=[AB7B2760:01C7B465] X-Virus-Checked: Checked by ClamAV on apache.org Farid Zaripov wrote: >> -----Original Message----- >> From: Martin Sebor [mailto:msebor@gmail.com] On Behalf Of Martin Sebor >> Sent: Saturday, June 16, 2007 7:44 PM >> To: stdcxx-dev@incubator.apache.org >> Subject: Windows build error(s) >> >> Looks like we're having some problems in Intel C++ builds on >> Windows (see the error below). Farid, do you know about this? >> > [...] >> ### Building solution / Creating HTML log Solution build >> script Checking arguments... >> Loading solution... >> D:\bman5\builds\33687223\source-buildspace\etc\config\windows\ >> build.wsf(226, >> 10) (null): Call was rejected by callee. > > I've found how to handle this error here: > http://msdn2.microsoft.com/en-us/library/ms228772(vs.80).aspx > > Unfortunately, jscript don't present the possibility to install COM > message filter, > so I've just perform the call in a loop with sleep: > http://svn.apache.org/viewvc?view=rev&rev=548682 This looks like an infinite loop. It might fix the problem with the build but I worry that it could cause trouble under some other error conditions. The MSDN fix also looks quite different (not to mention much more complicated). Isn't there some middle ground between the two approaches? E.g., could we loop only a limited number of times and only when the error was caused by the timing issue discussed on the MSDN page (if we can reliably detect it)? Martin