From owner-cvs-all@FreeBSD.ORG Wed Oct 6 11:56:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ADA316A4CE for ; Wed, 6 Oct 2004 11:56:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EF7243D3F; Wed, 6 Oct 2004 11:56:13 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) i96BuBNw043541; Wed, 6 Oct 2004 11:56:12 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4163DD5F.2090904@freebsd.org> Date: Wed, 06 Oct 2004 19:56:15 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.2) Gecko/20041004 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Anish Mistry References: <200410060811.i968B7sC016467@repoman.freebsd.org> <200410060652.43454.mistry.7@osu.edu> In-Reply-To: <200410060652.43454.mistry.7@osu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpthread/thread thr_stack.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2004 11:56:13 -0000 Anish Mistry wrote: >On Wednesday 06 October 2004 04:11 am, David Xu wrote: > > >>davidxu 2004-10-06 08:11:07 UTC >> >> FreeBSD src repository >> >> Modified files: >> lib/libpthread/thread thr_stack.c >> Log: >> Allocate red zone and stack space together and then split red zone from >> allocated space, orignal code left red zone unallocated, but those space >> can be allocated by user code, and result was providing no protection. >> >> Revision Changes Path >> 1.9 +17 -7 src/lib/libpthread/thread/thr_stack.c >> >> >Will this change be MFC'd to RELENG_5? It fixes one the the problems that >trips up getting a newer version of wine to work. ie. wine tries to allocate >the red zone. > > Have you tested wine with this change and does wine work after this change ?