Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 82853 invoked from network); 8 Nov 2007 16:58:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Nov 2007 16:58:40 -0000 Received: (qmail 65947 invoked by uid 500); 8 Nov 2007 16:58:28 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 65937 invoked by uid 500); 8 Nov 2007 16:58:28 -0000 Mailing-List: contact stdcxx-commits-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-commits@incubator.apache.org Received: (qmail 65926 invoked by uid 99); 8 Nov 2007 16:58:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 08:58:28 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 16:58:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9C7F51A9832; Thu, 8 Nov 2007 08:58:19 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r593227 - /incubator/stdcxx/branches/4.2.x/util/exec.cpp Date: Thu, 08 Nov 2007 16:58:19 -0000 To: stdcxx-commits@incubator.apache.org From: faridz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071108165819.9C7F51A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: faridz Date: Thu Nov 8 08:58:18 2007 New Revision: 593227 URL: http://svn.apache.org/viewvc?rev=593227&view=rev Log: 2007-11-08 Farid Zaripov * exec.cpp [_WIN32]: Added STATUS_HEAP_CORRUPTION to the nt_status_map (detected on Vista). Modified: incubator/stdcxx/branches/4.2.x/util/exec.cpp Modified: incubator/stdcxx/branches/4.2.x/util/exec.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/util/exec.cpp?rev=593227&r1=593226&r2=593227&view=diff ============================================================================== --- incubator/stdcxx/branches/4.2.x/util/exec.cpp (original) +++ incubator/stdcxx/branches/4.2.x/util/exec.cpp Thu Nov 8 08:58:18 2007 @@ -64,6 +64,9 @@ # ifndef STATUS_INVALID_PARAMETER # define STATUS_INVALID_PARAMETER ((DWORD)0xC000000DL) # endif +# ifndef STATUS_HEAP_CORRUPTION +# define STATUS_HEAP_CORRUPTION ((DWORD)0xC0000374L) +# endif # ifndef STATUS_STACK_BUFFER_OVERRUN # define STATUS_STACK_BUFFER_OVERRUN ((DWORD)0xC0000409L) # endif @@ -906,6 +909,7 @@ { STATUS_BREAKPOINT, SIGTRAP }, { STATUS_ACCESS_VIOLATION, SIGSEGV }, { STATUS_STACK_OVERFLOW, SIGSEGV }, + { STATUS_HEAP_CORRUPTION, SIGSEGV }, { STATUS_STACK_BUFFER_OVERRUN, SIGSEGV }, { STATUS_IN_PAGE_ERROR, SIGBUS }, { STATUS_ILLEGAL_INSTRUCTION, SIGILL },