From owner-freebsd-current Mon Jan 10 10: 5:32 2000 Delivered-To: freebsd-current@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id C2E87152F8 for ; Mon, 10 Jan 2000 10:05:28 -0800 (PST) (envelope-from freebsd-current@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id SAA24574 for current@FreeBSD.org; Mon, 10 Jan 2000 18:51:44 +0100 (CET) (envelope-from freebsd-current@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for current@FreeBSD.org (current@FreeBSD.org) To: current@FreeBSD.org Date: Mon, 10 Jan 2000 18:51:39 +0100 From: Marcel Moolenaar Message-ID: <387A1C2B.75AFE94A@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <57326.947517897@critter.freebsd.dk> Subject: Re: current hangs in make world (softupdates on ccd on ata) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Poul-Henning Kamp wrote: > > Make world hangs reliably for me right now: [snip] > |yacc -d -o c-parse.c c-parse.y > +-------- > > 0 19921 1 83 -2 0 1276 932 getblk D p0 0:00.09 yacc -d -o c-parse.c c-parse.y > > This is a softupdates filesystem on a ccd on ata... The format used for mkstemp has been changed (4 chars. longer). Does the following patch work? Index: main.c =================================================================== RCS file: /home/ncvs/src/usr.bin/yacc/main.c,v retrieving revision 1.11 diff -u -r1.11 main.c --- main.c 2000/01/10 08:54:09 1.11 +++ main.c 2000/01/10 17:47:33 @@ -304,7 +304,7 @@ if (tmpdir == 0) tmpdir = "/tmp"; len = strlen(tmpdir); - i = len + 13; + i = len + 17; if (len && tmpdir[len-1] != '/') ++i; -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message