From owner-cvs-src@FreeBSD.ORG Wed Mar 23 12:56:16 2005 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 A6BBF16A4CE; Wed, 23 Mar 2005 12:56:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 853DA43D2F; Wed, 23 Mar 2005 12:56:16 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j2NCuGpq046538; Wed, 23 Mar 2005 12:56:16 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j2NCuGoQ046537; Wed, 23 Mar 2005 12:56:16 GMT (envelope-from harti) Message-Id: <200503231256.j2NCuGoQ046537@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 23 Mar 2005 12:56:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make arch.c arch.h cond.c dir.c dir.h globals.h main.c parse.c suff.c suff.h 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: Wed, 23 Mar 2005 12:56:16 -0000 harti 2005-03-23 12:56:16 UTC FreeBSD src repository Modified files: usr.bin/make arch.c arch.h cond.c dir.c dir.h globals.h main.c parse.c suff.c suff.h Log: Make paths an explicite datatype instead of using the generic Lst. A Path is now a TAILQ of PathElements each of which just points to a reference counted directory. Rename all functions dealing with Paths from the Dir_ prefix to a Path_ prefix. Revision Changes Path 1.60 +3 -3 src/usr.bin/make/arch.c 1.2 +2 -1 src/usr.bin/make/arch.h 1.43 +1 -1 src/usr.bin/make/cond.c 1.52 +188 -213 src/usr.bin/make/dir.c 1.21 +14 -9 src/usr.bin/make/dir.h 1.2 +6 -5 src/usr.bin/make/globals.h 1.129 +10 -9 src/usr.bin/make/main.c 1.88 +17 -17 src/usr.bin/make/parse.c 1.60 +29 -33 src/usr.bin/make/suff.c 1.3 +2 -1 src/usr.bin/make/suff.h