From owner-cvs-all Mon Feb 24 0: 7: 7 2003 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 106F037B401; Mon, 24 Feb 2003 00:07:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8B4043F85; Mon, 24 Feb 2003 00:07:05 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O8750U058864; Mon, 24 Feb 2003 00:07:05 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1O875e2058863; Mon, 24 Feb 2003 00:07:05 -0800 (PST) Message-Id: <200302240807.h1O875e2058863@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 24 Feb 2003 00:07:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh machdep.h memalloc.c nodes.c.pat X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2003/02/24 00:07:05 PST Modified files: bin/sh memalloc.c nodes.c.pat Removed files: bin/sh machdep.h Log: Third attempt at removing machdep.h and using ALIGN from . The initial stack_block is staticly allocated and will be aligned according to the alignment requirements of pointers, which does not necessarily match the alignment enforced by ALIGN. To solve this a more involved change is required: remove the static initial stack and deal with an initial condition of not having a stack at all. This change is therefore more risky than the previous ones, but unavoidable (other than not using the platform default alignment). Discussed with: tjr Approved and reviewed by: tjr Tested on: alpha, i386, ia64 and sparc64 Revision Changes Path 1.11 +0 -52 src/bin/sh/machdep.h (dead) 1.24 +53 -48 src/bin/sh/memalloc.c 1.13 +1 -1 src/bin/sh/nodes.c.pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message