From owner-cvs-src@FreeBSD.ORG Sat Oct 9 10:21:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AE3016A4CE; Sat, 9 Oct 2004 10:21:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A6D143D2D; Sat, 9 Oct 2004 10:21:19 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i99ALJad086230; Sat, 9 Oct 2004 10:21:19 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i99ALJEl086229; Sat, 9 Oct 2004 10:21:19 GMT (envelope-from davidxu) Message-Id: <200410091021.i99ALJEl086229@repoman.freebsd.org> From: David Xu Date: Sat, 9 Oct 2004 10:21:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib/libpthread/thread thr_stack.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2004 10:21:19 -0000 davidxu 2004-10-09 10:21:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib/libpthread/thread thr_stack.c Log: MFC 1.9: 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. Approved by: re (scottl) Revision Changes Path 1.8.4.1 +17 -7 src/lib/libpthread/thread/thr_stack.c