]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Get rid of the sequential access feature of the lists. This was used
authorHartmut Brandt <harti@FreeBSD.org>
Wed, 8 Dec 2004 16:22:01 +0000 (16:22 +0000)
committerHartmut Brandt <harti@FreeBSD.org>
Wed, 8 Dec 2004 16:22:01 +0000 (16:22 +0000)
commitc76d7d5047d90b7777133dd0769abbfb5d58ddbf
tree033640eae93833ae9810ed9247ac98509312f27b
parentbb87c3794781abee9042b91c98c27ed8bdcfd369
Get rid of the sequential access feature of the lists. This was used
only in a couple of places and all of them except for one were easily
converted to use Lst_First/Lst_Succ. The one place is compatibility
mode in job.c where the it was used to advance to the next command on
each invocation of JobStart. For this case add a pointer to the node to
hold the currently executed command.
15 files changed:
usr.bin/make/Makefile
usr.bin/make/arch.c
usr.bin/make/dir.c
usr.bin/make/job.c
usr.bin/make/lst.h
usr.bin/make/lst.lib/lstClose.c [deleted file]
usr.bin/make/lst.lib/lstInit.c
usr.bin/make/lst.lib/lstIsAtEnd.c [deleted file]
usr.bin/make/lst.lib/lstNext.c [deleted file]
usr.bin/make/lst.lib/lstOpen.c [deleted file]
usr.bin/make/lst.lib/lstRemove.c
usr.bin/make/make.c
usr.bin/make/make.h
usr.bin/make/suff.c
usr.bin/make/targ.c