From owner-freebsd-current Mon Feb 18 5:10:34 2002 Delivered-To: freebsd-current@freebsd.org Received: from mail.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (Postfix) with ESMTP id 7631A37B404; Mon, 18 Feb 2002 05:10:06 -0800 (PST) Received: from localhost (eischen@localhost) by mail.pcnet.com (8.12.1/8.12.1) with ESMTP id g1IDA2lF022192; Mon, 18 Feb 2002 08:10:04 -0500 (EST) Date: Mon, 18 Feb 2002 08:10:02 -0500 (EST) From: Daniel Eischen To: Peter Wemm Cc: Bernd Walter , alpha@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: OK, who broke alpha this time? :-/ In-Reply-To: <20020218114826.AAFF43A9A@overcee.wemm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG And when is alpha buildworld going to work again? It's been busted for well over a week. The following patch posted by drew gets around the problem for now. If we want people to test changes on on the alpha, then we should try and make sure that world isn't broken for too long on it. I know the fix below isn't correct, but it at least allows world to build. Index: usr.bin/binutils/gdb/alpha//kvm-fbsd.c =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/gdb/alpha/kvm-fbsd.c,v retrieving revision 1.6 diff -u -r1.6 kvm-fbsd.c --- usr.bin/binutils/gdb/alpha//kvm-fbsd.c 13 Oct 2001 04:38:46 -0000 1.6 +++ usr.bin/binutils/gdb/alpha//kvm-fbsd.c 17 Feb 2002 21:57:25 -0000 @@ -390,7 +390,7 @@ addr = (CORE_ADDR)parse_and_eval_address(arg); /* Read the PCB address in proc structure. */ - addr += (int) &((struct proc *)0)->p_thread.td_pcb; + addr += (int) &((struct proc *)0)->p_xxthread.td_pcb; if (kvread(addr, &val)) error("cannot read pcb ptr"); -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message